ARG PYTHON_VERSION=3.10.12
FROM python:${PYTHON_VERSION}-slim as base

ENV PYTHONDONTWRITEBYTECODE=1
ENV PYTHONUNBUFFERED=1

WORKDIR /app

RUN apt-get update && apt-get install -y imagemagick && apt-get install -y wget && ls

RUN wget https://files.ivanch.me/api/public/dl/iFuXSNhw/small-image.png && \
    wget https://files.ivanch.me/api/public/dl/81Bkht5C/big-image.png && \
    wget https://files.ivanch.me/api/public/dl/nAndfAjK/video.mp4 && \
    wget https://files.ivanch.me/api/public/dl/RzXwJG7o/nginx.html && \
    rm -rf runtimes && \
    mkdir -p ./static && \
    mv small-image.png ./static && \
    mv big-image.png ./static && \
    mv video.mp4 ./static && \
    mv nginx.html ./static

COPY . .

RUN --mount=type=cache,target=/root/.cache/pip \
    --mount=type=bind,source=requirements.txt,target=requirements.txt \
    python -m pip install -r requirements.txt

EXPOSE 5000

# Run the application.
CMD gunicorn 'app:app' --bind=0.0.0.0:5000 --timeout 3600