feat: initial ImapSync Manager setup
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
FROM debian:bookworm-slim
|
||||
|
||||
# Install imapsync and dependencies
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
imapsync \
|
||||
python3 \
|
||||
python3-pip \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
WORKDIR /app
|
||||
COPY worker.py .
|
||||
|
||||
RUN mkdir -p /data/logs
|
||||
|
||||
CMD ["python3", "-u", "worker.py"]
|
||||
Reference in New Issue
Block a user