Files
decluttarr/docker/Dockerfile
Benjamin Harder aff6eeca52 Test
2023-10-01 09:13:17 +02:00

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"]