testbed-pythonshiny / Dockerfile
nanye's picture
different frontends
93c34ad
raw
history blame contribute delete
253 Bytes
FROM python:3.12
WORKDIR /code
COPY ./frontends/gradio/ /code
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
EXPOSE 7860
#CMD ["shiny", "run", "decision.py", "--host", "0.0.0.0", "--port", "7860"]
CMD ["python", "gradio_eg.py"]