query / Dockerfile
lkjjj26's picture
update Dockerfile no cache
70e2f6b
raw
history blame
225 Bytes
FROM python:3.12
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --upgrade -r /code/requirements.txt
#--no-cache-dir
COPY . .
EXPOSE 7860
CMD ["shiny run --port 7860 --host 0.0.0.0 app.py"]