From b5eff4b25e2a336f3ca461addd3bc489448824ee Mon Sep 17 00:00:00 2001 From: Viktor Varland Date: Mon, 4 Oct 2021 19:53:22 +0200 Subject: [PATCH] ci(docker): set the workdir to server --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7a0a5fc3d..6a8618876 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,6 +24,6 @@ WORKDIR /srv COPY --from=build /src ./apphub # run the app -WORKDIR apphub +WORKDIR apphub/server EXPOSE 3000 -CMD ["node", "server/src/main.js"] +CMD ["node", "src/main.js"]