We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4260466 commit 0bdc7e8Copy full SHA for 0bdc7e8
2 files changed
backend/Dockerfile
@@ -28,6 +28,8 @@ EXPOSE 8080
28
29
# Add debugging
30
RUN ls -la && pwd
31
+RUN which node
32
+RUN node --version
33
34
# Start the server with explicit node command
-CMD ["/usr/local/bin/node", "server.cjs"]
35
+CMD ["node", "server.cjs"]
backend/package.json
@@ -9,6 +9,7 @@
9
"express": "^5.0.0",
10
"multer": "^2.0.0",
11
"node-fetch": "^3.0.0",
12
- "uuid": "^12.0.0"
+ "uuid": "^12.0.0",
13
+ "cors": "^2.8.5"
14
}
15
0 commit comments