oscarwang2 commited on
Commit
975cbf3
·
verified ·
1 Parent(s): 103b9b3

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -11,5 +11,8 @@ RUN pip install --no-cache-dir -r requirements.txt
11
  # Copy the rest of the application code
12
  COPY . .
13
 
 
 
 
14
  # Command to run the application
15
  CMD ["python", "app.py"]
 
11
  # Copy the rest of the application code
12
  COPY . .
13
 
14
+ # Expose port 5000
15
+ EXPOSE 5000
16
+
17
  # Command to run the application
18
  CMD ["python", "app.py"]