FROM alpine:3.21

RUN apk add --no-cache wget unzip

COPY config/ /caddyfiles/
COPY init.sh /init.sh
RUN chmod +x /init.sh

CMD ["/init.sh"]