FROM --platform=linux/amd64 ghcr.io/owl-corp/python-poetry-base:3.12-slim ENV PYTHONHASHSEED=random # Install Dependencies WORKDIR /metricity COPY poetry.lock pyproject.toml ./ RUN poetry install --without dev COPY . . CMD ["bash", "entry_point.sh"]