mirror of
https://github.com/ManiMatter/decluttarr.git
synced 2026-04-18 02:54:03 +02:00
14 lines
267 B
Docker
14 lines
267 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 ./docker/requirements.txt ./
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
CMD ["python", "main.py"]
|