aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'Dockerfile')
-rw-r--r--Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Dockerfile b/Dockerfile
index bc8eee8..f19c7f3 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -25,10 +25,10 @@ COPY --chown=node:node package*.json ./
RUN npm i --production
-COPY --chown=node:node --from=build /app/dist build
+COPY --chown=node:node --from=build /app/dist dist
EXPOSE 3000
USER node
-CMD [ "node", "build/index.js" ]
+CMD [ "node", "dist/index.js" ]