video-stream/Dockerfile
Hunter Opp c606d54ff0
okay
2022-01-31 01:46:50 +05:30

10 lines
300 B
Docker

FROM nikolaik/python-nodejs:latest
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
CMD ["python3", "main.py"]