StreamingCommunity/dockerfile
Emanuele C 4b475a4724
Fix missing nodejs in Docker + utility (#147)
* Added Makefile and nodejs to docker

* Update README.md, added makefile description

* Clarification on mounting config.json
2024-06-12 20:16:24 +02:00

22 lines
339 B
Plaintext

FROM python:3.11-slim
ENV TEMP /tmp
RUN mkdir -p $TEMP
RUN apt-get update && apt-get install -y \
ffmpeg \
build-essential \
libssl-dev \
libffi-dev \
python3-dev \
libxml2-dev \
libxslt1-dev \
nodejs
COPY . /app
WORKDIR /app
RUN pip install --no-cache-dir -r requirements.txt
CMD ["python", "run.py"]