Files
truenas-catalog-notify/Dockerfile
lockeshor 48b17634b4
All checks were successful
Docker Image / build (push) Successful in 1m18s
Update Dockerfile
2026-03-02 13:29:46 -08:00

16 lines
238 B
Docker

FROM python:3.12-slim
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1
WORKDIR /app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY watcher.py ./
VOLUME /data
CMD ["python", "/app/watcher.py"]