Xylaria-instruct-4k / Dockerfile
Reality123b's picture
Update Dockerfile
96dec27 verified
raw
history blame contribute delete
233 Bytes
FROM python:3.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install shiny,shinyswatch,seaborn,matplotlib,pandas
COPY . .
EXPOSE 7860
CMD ["shiny", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]