pre remote host

This commit is contained in:
CaffeineFueled 2025-06-08 22:13:26 +02:00
parent 9569f90aba
commit 86d66717c1
6 changed files with 90 additions and 18 deletions

View file

@ -21,6 +21,9 @@ RUN pip install --no-cache-dir --upgrade pip && \
# Copy application code
COPY main.py .
# Copy .env.example for reference (actual .env will be mounted at runtime)
COPY .env.example .
# Create input directory and set permissions
RUN mkdir -p /app/input && \
chown -R appuser:appuser /app