seafile-containerized/seafile-caddy/Dockerfile

11 lines
178 B
Docker
Raw Normal View History

2023-08-18 00:50:30 +00:00
FROM caddy:2.7.4-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"]