parsedmarc-dockerized/data/Dockerfiles/parsedmarc-init/Dockerfile

9 lines
152 B
Docker
Raw Normal View History

2020-08-08 21:32:53 +02:00
FROM alpine:latest
ADD start.sh /start.sh
RUN apk add --no-cache curl openssl jq bash \
&& chmod +x /start.sh
ENTRYPOINT [ "/start.sh" ]