4 lines
111 B
Docker
4 lines
111 B
Docker
|
FROM alpine:latest
|
||
|
RUN apk add --no-cache curl
|
||
|
COPY entrypoint.sh /bin/entrypoint.sh
|
||
|
CMD ["/bin/entrypoint.sh"]
|