Include highlight merger in photo publisher image

This commit is contained in:
2026-09-26 19:39:24 +01:00
parent d15ba78579
commit d764d489b9
+1 -1
View File
@@ -3,6 +3,6 @@ WORKDIR /app
RUN apt-get update && apt-get install -y --no-install-recommends git openssh-client && rm -rf /var/lib/apt/lists/*
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py publisher.py posts.py ./
COPY app.py publisher.py posts.py highlights.py ./
ENV PYTHONDONTWRITEBYTECODE=1 PYTHONUNBUFFERED=1 GIT_TERMINAL_PROMPT=0
CMD ["gunicorn", "--bind", "0.0.0.0:8000", "--workers", "1", "--threads", "2", "--timeout", "180", "app:create_app()"]