9 lines
153 B
Docker
9 lines
153 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk update && apk add curl
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"] |