mirror of
https://github.com/Viren070/AIOStremio.git
synced 2025-12-01 23:24:19 +01:00
19 lines
301 B
Docker
19 lines
301 B
Docker
FROM python:3.13-alpine
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apk add --no-cache gcc python3-dev musl-dev linux-headers
|
|
|
|
RUN pip install --root-user-action ignore option uv
|
|
|
|
COPY requirements.txt .
|
|
RUN uv pip install --system -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 8469
|
|
|
|
ENV PYTHONUNBUFFERED=1
|
|
|
|
CMD ["python", "main.py"]
|