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