Update Dockerfile to point CMD to the correct server file location

This commit is contained in:
Daan Schouteden
2026-06-02 13:08:07 +02:00
parent 6dbf604a7f
commit 7233ab3f32
+1 -1
View File
@@ -16,4 +16,4 @@ COPY --from=deps /app/node_modules ./node_modules
COPY --from=build /app/dist ./dist
COPY package.json ./
EXPOSE 8787
CMD ["node", "dist/server.js"]
CMD ["node", "dist/src/server.js"]