learning4 commited on
Commit
71d6441
·
verified ·
1 Parent(s): bd6ab92

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -13,10 +13,10 @@ COPY . /app
13
  # Install any needed packages specified in requirements.txt
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
16
- # Make port 5000 available to the world outside this container
17
  EXPOSE 5000
18
 
19
- # Define environment variable
20
  ENV NAME World
21
 
22
  # Run app.py when the container launches
 
13
  # Install any needed packages specified in requirements.txt
14
  RUN pip install --no-cache-dir -r requirements.txt
15
 
16
+ # Expose port 5000 to the world outside this container
17
  EXPOSE 5000
18
 
19
+ # Define environment variable (optional, not needed for this setup)
20
  ENV NAME World
21
 
22
  # Run app.py when the container launches