File size: 198 Bytes
89a43e1
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
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"]