dockerfiles/gimp/Dockerfile

20 lines
424 B
Docker
Raw Normal View History

2015-04-28 19:33:32 +02:00
# Run gimp in a contianer
#
# docker run -d \
# -v /etc/localtime:/etc/localtime:ro \
# -v /tmp/.X11-unix:/tmp/.X11-unix \
# -e DISPLAY=unix$DISPLAY \
# -v $HOME/Pictures:/root/Pictures \
# --name gimp \
# jess/gimp
2015-04-28 19:33:32 +02:00
#
FROM debian:stretch
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
RUN apt-get update && apt-get install -y \
gimp \
--no-install-recommends \
&& rm -rf /var/lib/apt/lists/*
ENTRYPOINT [ "gimp" ]