Files
matrix-setup/Dockerfile
2025-09-01 16:08:08 +02:00

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"]