ccx / Dockerfile
ahutchen's picture
Upload 2 files
89a43e1 verified
raw
history blame contribute delete
198 Bytes
FROM alpine:3.21
RUN apk add --no-cache ca-certificates curl
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
RUN chmod +x /usr/local/bin/entrypoint.sh
ENTRYPOINT ["/usr/local/bin/entrypoint.sh"]