9 lines
129 B
Docker
9 lines
129 B
Docker
FROM alpine:latest
|
|
|
|
RUN apk add --no-cache yq curl openssl jq
|
|
|
|
COPY start.sh /start.sh
|
|
|
|
RUN chmod +x /start.sh
|
|
|
|
CMD ["/start.sh"] |