File size: 330 Bytes
21e6506
2b28c21
 
90e8afd
21e6506
2b28c21
 
 
 
 
 
 
cc6f8d1
 
21e6506
2b28c21
 
21e6506
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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"]