video-stream/Dockerfile

11 lines
311 B
Docker
Raw Normal View History

2021-12-15 11:23:53 +00:00
FROM nikolaik/python-nodejs:python3.9-nodejs17
2021-10-30 22:15:42 +00:00
RUN apt-get update \
&& apt-get install -y --no-install-recommends ffmpeg \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*
COPY . /app
WORKDIR /app
RUN pip3 install --no-cache-dir --upgrade --requirement requirements.txt
2021-11-14 12:12:34 +00:00
2021-10-30 04:31:39 +00:00
CMD ["python3", "main.py"]