obscreen/Dockerfile
2024-07-22 03:23:19 +02:00

14 lines
292 B
Docker

FROM python:3.9.17-alpine3.17
# Install ffmpeg and other dependencies
RUN apk add --no-cache gcc musl-dev sqlite-dev ntfs-3g ffmpeg build-base linux-headers
WORKDIR /app
COPY . .
# Install Python dependencies
RUN pip install -r requirements.txt
ENTRYPOINT ["python", "/app/obscreen.py"]