backup_imap/Dockerfile

12 lines
240 B
Text
Raw Permalink Normal View History

2025-03-26 14:39:54 +01:00
FROM python:3
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN pip install .
VOLUME config
CMD [ "python", "/usr/local/bin/backup_imap.py", "--config", "/config/config.conf" ]