diff options
author | techknowlogick <techknowlogick@users.noreply.github.com> | 2017-11-27 07:08:25 -0500 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2017-11-27 14:08:25 +0200 |
commit | 6a58e3f9fcb8b9f30345e2f8a5812bda72c6baf5 (patch) | |
tree | 3cd89023be4ccc3be124aed398881041b6db1f30 /docs | |
parent | 1028ef2defd94a64f2433b07fe5d93681864cebb (diff) | |
download | gitea-6a58e3f9fcb8b9f30345e2f8a5812bda72c6baf5.tar.gz gitea-6a58e3f9fcb8b9f30345e2f8a5812bda72c6baf5.zip |
Dockerfile for docs copy proper files into image (#2989)
fixes docker build from: #2874
Diffstat (limited to 'docs')
-rw-r--r-- | docs/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/Dockerfile b/docs/Dockerfile index c69a9214e4..35e4ce9a6a 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -16,7 +16,7 @@ EXPOSE 80 RUN apk add --no-cache wget mailcap ca-certificates COPY --from=build-env /go/bin/caddy /usr/sbin/caddy -COPY docker/caddy.conf /etc/caddy.conf -COPY public /srv/www +COPY docs/docker/caddy.conf /etc/caddy.conf +COPY docs/public /srv/www CMD ["/usr/sbin/caddy", "-conf", "/etc/caddy.conf"] |