FROM python:3.13-slim ARG TARGETARCH ARG TARGETVARIANT ENV OJ_ENV=production WORKDIR /app COPY ./deploy/requirements.txt /app/deploy/ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked,id=apt-cache-$TARGETARCH$TARGETVARIANT-final \ --mount=type=cache,target=/root/.cache/pip,id=pip-cache-$TARGETARCH$TARGETVARIANT-final \ <