File size: 461 Bytes
dd7ff72
 
 
 
 
 
 
 
 
 
 
 
ef48588
dd7ff72
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# FROM python:3.10 
# WORKDIR /app
# COPY requirements.txt . 
# RUN pip install -r requirements.txt
# COPY . .
# EXPOSE 5000 8501
# CMD ["sh", "-c", "python Deployment/app.py & while ! nc -z localhost 5000; do sleep 1; done; streamlit run Deployment/streamlit/main.py --server.port=8501 --server.address=0.0.0.0"]
FROM python:3.10
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["python", "Deployment/app.py"]