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