wastream-mirror/Dockerfile
2026-04-05 15:23:21 +02:00

17 lines
357 B
Docker

FROM python:3.12-slim
LABEL name="WAStream" \
description="Stremio addon to convert DDL to streams via debrid services" \
url="https://gitlab.com/10ho/wastream"
WORKDIR /app
COPY pyproject.toml ./
RUN pip install --no-cache-dir --upgrade pip && \
pip install --no-cache-dir .
COPY . .
EXPOSE 7000
CMD ["python", "-m", "wastream.main"]