diff --git a/photo-upload/Containerfile b/photo-upload/Containerfile index 147d03c..a5e7767 100644 --- a/photo-upload/Containerfile +++ b/photo-upload/Containerfile @@ -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()"]