2015-06-02 05:02:10 +02:00
|
|
|
FROM debian:sid
|
2015-02-10 18:59:22 +01:00
|
|
|
MAINTAINER Jessica Frazelle <jess@docker.com>
|
|
|
|
|
2015-06-02 05:02:10 +02:00
|
|
|
RUN sed -i.bak 's/sid main/sid main contrib/g' /etc/apt/sources.list && \
|
2015-02-10 18:59:22 +01:00
|
|
|
apt-get update && apt-get install -y \
|
|
|
|
flashplugin-nonfree \
|
2015-06-02 05:02:10 +02:00
|
|
|
hicolor-icon-theme \
|
2015-02-10 18:59:22 +01:00
|
|
|
iceweasel \
|
2015-06-02 05:02:10 +02:00
|
|
|
libgl1-mesa-dri \
|
|
|
|
libgl1-mesa-glx \
|
2015-02-10 18:59:22 +01:00
|
|
|
--no-install-recommends
|
|
|
|
|
2015-04-16 05:36:00 +02:00
|
|
|
COPY local.conf /etc/fonts/local.conf
|
|
|
|
|
2015-02-10 18:59:22 +01:00
|
|
|
ENTRYPOINT [ "iceweasel" ]
|