diff --git a/Dockerfile b/Dockerfile index 2982752..407503c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,6 @@ RUN npm install --omit=dev # Copy the rest of the repository COPY . . -EXPOSE 3000 +EXPOSE 3001 CMD ["npm", "start"] diff --git a/server.js b/server.js index 6f8d687..1878906 100644 --- a/server.js +++ b/server.js @@ -4,7 +4,7 @@ const path = require("path"); const { exec } = require("child_process"); const app = express(); -const port = process.env.PORT || 3000; +const port = process.env.PORT || 3001; const rootDir = path.join(__dirname); // Serve static assets from the project root