From c3bbf43970a32fd3b933b07110dabe1468ea9178 Mon Sep 17 00:00:00 2001 From: techknowlogick Date: Wed, 4 Jul 2018 05:27:30 -0400 Subject: [PATCH] Fix docker build (#4358) /app/gitea/gitea is the file, and /usr/local/bin is where the symlink will be located --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eb790491c..53ffdda5d 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