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