tsi-org commited on
Commit
164fe40
·
1 Parent(s): 1a7ee7f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -33,8 +33,10 @@ COPY --from=build /usr/src/app/package-lock.json ./package-lock.json
33
  # Install only production dependencies
34
  RUN npm install --production
35
 
36
- # Expose the port the app will run on
37
  EXPOSE 3000
38
 
 
 
39
  # Command to run the application
40
  CMD ["npm", "start"]
 
33
  # Install only production dependencies
34
  RUN npm install --production
35
 
36
+
37
  EXPOSE 3000
38
 
39
+ ENV PORT 3000
40
+
41
  # Command to run the application
42
  CMD ["npm", "start"]