mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
9 lines
196 B
Docker
9 lines
196 B
Docker
|
FROM alpine:latest
|
||
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
||
|
|
||
|
RUN apk --no-cache add \
|
||
|
--repository https://dl-3.alpinelinux.org/alpine/edge/testing/ \
|
||
|
gnuplot
|
||
|
|
||
|
ENTRYPOINT ["gnuplot"]
|