mirror of
https://github.com/ggogel/seafile-containerized.git
synced 2024-11-16 17:05:32 +00:00
11 lines
178 B
Docker
11 lines
178 B
Docker
FROM caddy:2.4.3-alpine
|
|
|
|
RUN apk add --no-cache \
|
|
bash \
|
|
bind-tools
|
|
|
|
COPY Caddyfile /etc/caddy/Caddyfile
|
|
COPY scripts /scripts
|
|
RUN chmod u+x /scripts/*
|
|
|
|
CMD ["/scripts/start.sh"] |