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"]