angeloqq commited on
Commit
88905f6
·
verified ·
1 Parent(s): 7bcfb41

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -0
Dockerfile CHANGED
@@ -17,5 +17,8 @@ RUN pip install --no-cache-dir -r requirements.txt
17
  # Copy the rest of the application code to the working directory
18
  COPY . .
19
 
 
 
 
20
  # Command to run the application
21
  CMD ["python", "app/app.py"]
 
17
  # Copy the rest of the application code to the working directory
18
  COPY . .
19
 
20
+ # Expose the port your app runs on
21
+ EXPOSE 8000
22
+
23
  # Command to run the application
24
  CMD ["python", "app/app.py"]