From 04942dcaf6d15e003bdb0d523fea77044e18e284 Mon Sep 17 00:00:00 2001 From: Jess Frazelle Date: Thu, 15 Feb 2018 10:02:49 -0500 Subject: [PATCH] ghostscript: add Signed-off-by: Jess Frazelle --- ghostscript/Dockerfile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 ghostscript/Dockerfile diff --git a/ghostscript/Dockerfile b/ghostscript/Dockerfile new file mode 100644 index 0000000..9d99dc0 --- /dev/null +++ b/ghostscript/Dockerfile @@ -0,0 +1,8 @@ +FROM alpine:latest +LABEL maintainer "Jessie Frazelle " + +RUN apk --no-cache add \ + --repository https://dl-3.alpinelinux.org/alpine/edge/main/ \ + ghostscript + +ENTRYPOINT ["gs"]