10 lines
167 B
Docker
10 lines
167 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache bash curl jq ca-certificates
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
|
|
RUN chmod +x /entrypoint.sh
|
|
|
|
ENTRYPOINT ["/entrypoint.sh"]
|