Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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 |
-
#
|
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
|