test-live / Dockerfile
imspidey's picture
Update Dockerfile
dee0f19
raw
history blame contribute delete
186 Bytes
FROM python:3.9
WORKDIR /code
RUN pip install ffmpeg
RUN pip install --upgrade pip
COPY ./live.sh /code/live.sh
RUN bash /code/live.sh
COPY . .
CMD [ "0.0.0.0", "--port", "7860"]