Files
2026-04-16 12:57:09 +02:00

13 lines
185 B
Docker

FROM alpine:latest
LABEL maintainer="matthias@mitscherlich.nl"
RUN \
apk update && \
apk add --no-cache \
curl
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]