aboutsummaryrefslogtreecommitdiffstats
path: root/Dockerfile
blob: d9aabde4f04eaa7039d7b722652fe4d4aec84f7a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
FROM --platform=linux/amd64 ghcr.io/chrislovering/python-poetry-base:3.10-slim

ENV PYTHONHASHSEED=random

# Install Dependencies
WORKDIR /metricity
COPY poetry.lock pyproject.toml ./
RUN poetry install


COPY . /metricity
CMD ["bash", "entry_point.sh"]