mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2025-02-18 18:17:51 +01:00
20 lines
429 B
Docker
20 lines
429 B
Docker
# Run gnuplot in a container
|
|
|
|
# docker run -d \
|
|
# -v /tmp/.X11-unix:/tmp/.X11-unix \
|
|
# -e DISPLAY=unix$DISPLAY \
|
|
# -v $HOME/.Xauthority:/root/.Xauthority \
|
|
# --hostname $(hostname) \
|
|
# --name gnuplot \
|
|
# jess/gnuplot
|
|
#
|
|
|
|
FROM alpine:latest
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apk --no-cache add \
|
|
--repository http://dl-cdn.alpinelinux.org/alpine/edge/testing/ \
|
|
gnuplot
|
|
|
|
ENTRYPOINT ["gnuplot"]
|