13 lines
185 B
Docker
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"]
|