1
0
mirror of https://gitea.com/gitea/redirects synced 2025-10-06 00:02:57 +02:00
Files
redirects/Dockerfile
Thomas Boerger c55b801707 Initial commit
2016-11-10 11:04:14 +01:00

13 lines
202 B
Docker

FROM alpine:edge
EXPOSE 80
RUN apk update && \
apk add \
caddy \
mailcap && \
rm -rf \
/var/cache/apk/*
CMD ["/usr/sbin/caddy", "-port", "80", "-root", "/srv/www"]
ADD public /srv/www