mirror of
https://github.com/ManiMatter/decluttarr.git
synced 2026-04-18 03:54:02 +02:00
14 lines
314 B
Docker
14 lines
314 B
Docker
#FROM python:3.9-slim-buster
|
|
FROM python:3.10.13-slim
|
|
LABEL org.opencontainers.image.source="https://github.com/Fxsch/decluttarr"
|
|
|
|
ENV IS_IN_DOCKER 1
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
RUN pip install --no-cache-dir -r docker/requirements.txt
|
|
|
|
|
|
CMD ["python", "main.py"]
|