seafile-containerized/seafile-caddy/Dockerfile

11 lines
178 B
Docker
Raw Permalink Normal View History

FROM caddy:2.4.6-alpine
2021-01-18 23:31:17 +00:00
2021-01-24 23:20:17 +00:00
RUN apk add --no-cache \
bash \
bind-tools
2021-01-24 23:54:34 +00:00
COPY Caddyfile /etc/caddy/Caddyfile
COPY scripts /scripts
2021-01-25 00:49:00 +00:00
RUN chmod u+x /scripts/*
2021-01-24 23:54:34 +00:00
CMD ["/scripts/start.sh"]