diff options
author | techknowlogick <techknowlogick@users.noreply.github.com> | 2018-07-04 05:27:30 -0400 |
---|---|---|
committer | Lauris BH <lauris@nix.lv> | 2018-07-04 12:27:30 +0300 |
commit | c3bbf43970a32fd3b933b07110dabe1468ea9178 (patch) | |
tree | 399c01b81c83a4f027ba81d5cfc39687708be503 /Dockerfile | |
parent | fc53f95f2304c11220974eb606a0933b5a738ba1 (diff) | |
download | gitea-c3bbf43970a32fd3b933b07110dabe1468ea9178.tar.gz gitea-c3bbf43970a32fd3b933b07110dabe1468ea9178.zip |
Fix docker build (#4358)
/app/gitea/gitea is the file, and /usr/local/bin is where the symlink will be located
Diffstat (limited to 'Dockerfile')
-rw-r--r-- | Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile index eb790491c4..53ffdda5dd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,4 +58,4 @@ CMD ["/bin/s6-svscan", "/etc/s6"] COPY docker / COPY --from=build-env /go/src/code.gitea.io/gitea/gitea /app/gitea/gitea -RUN ln -s /usr/local/bin/gitea /app/gitea/gitea +RUN ln -s /app/gitea/gitea /usr/local/bin/gitea |