LandingAI-Poker / Dockerfile
dillonlaird's picture
trying docker space
7092157
raw
history blame
No virus
191 Bytes
FROM python:3.10
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade /code/requirements.txt
COPY . .
CMD ["streamlit", "run", "app.py"]