Spaces:
Sleeping
Sleeping
oscarwang2
commited on
Update Dockerfile
Browse files- 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"]
|