MLBPitchGPT / Dockerfile
ZENLLC's picture
Duplicate from nesticot/mlb_csw_whiff_rolling_2
f21c7b1
raw
history blame contribute delete
209 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["shiny", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]