multimodal / Dockerfile
jcheng5's picture
Update Dockerfile
cc6f8d1 verified
raw
history blame
330 Bytes
FROM python:3.10
WORKDIR /code
RUN apt update -y
RUN apt install -y ffmpeg
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
RUN mkdir -p /.cache
RUN chmod 777 /.cache
EXPOSE 7860
CMD ["shiny", "run", "app.py", "--host", "0.0.0.0", "--port", "7860"]