Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
|
@@ -45,6 +45,9 @@ COPY . /app
|
|
| 45 |
# Expose port 7768 for SSH
|
| 46 |
# EXPOSE 7860
|
| 47 |
|
|
|
|
|
|
|
|
|
|
| 48 |
# Start the SSH server when the container runs
|
| 49 |
# CMD ["python3","app.py"]
|
| 50 |
CMD ["flask" , "run" , "--host=0.0.0.0", "--port=7860" ]
|
|
|
|
| 45 |
# Expose port 7768 for SSH
|
| 46 |
# EXPOSE 7860
|
| 47 |
|
| 48 |
+
RUN apt-get update && apt-get upgrade -y
|
| 49 |
+
RUN apt-get install docker-compose -y
|
| 50 |
+
|
| 51 |
# Start the SSH server when the container runs
|
| 52 |
# CMD ["python3","app.py"]
|
| 53 |
CMD ["flask" , "run" , "--host=0.0.0.0", "--port=7860" ]
|