Cricket_Live_Score / Dockerfile
JoelJebaraj93's picture
Create Dockerfile
0eb54b1 verified
raw
history blame contribute delete
221 Bytes
# Dockerfile
FROM python:3.9-slim
WORKDIR /app
COPY requirements.txt ./
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["streamlit", "run", "app.py", "--server.port=7860", "--server.enableCORS=false"]