From 329b611348d2df22e5b3ae48139509a6ba3b52fa Mon Sep 17 00:00:00 2001 From: kermieisinthehouse Date: Tue, 22 Mar 2022 19:35:42 -0700 Subject: [PATCH] Fix local docker builds under new projext org (#2411) --- docker/build/x86_64/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docker/build/x86_64/Dockerfile b/docker/build/x86_64/Dockerfile index 529315959..0749ad7c6 100644 --- a/docker/build/x86_64/Dockerfile +++ b/docker/build/x86_64/Dockerfile @@ -23,6 +23,8 @@ COPY ./go* ./*.go Makefile gqlgen.yml .gqlgenc.yml /stash/ COPY ./scripts /stash/scripts/ COPY ./vendor /stash/vendor/ COPY ./pkg /stash/pkg/ +COPY ./cmd /stash/cmd +COPY ./internal /stash/internal COPY --from=frontend /stash /stash/ RUN make generate-backend ARG GITHASH @@ -35,4 +37,4 @@ RUN apk add --no-cache ca-certificates vips-tools ffmpeg COPY --from=backend /stash/stash /usr/bin/ ENV STASH_CONFIG_FILE=/root/.stash/config.yml EXPOSE 9999 -ENTRYPOINT ["stash"] \ No newline at end of file +ENTRYPOINT ["stash"]