c3lf-system-3/deploy/testing/Dockerfile.backend
jedi d80fb60afd
All checks were successful
/ test (push) Successful in 2m27s
/ deploy (push) Successful in 3m22s
fix bug in initial db creation caused by prometheus lib rtying to access tables at load time
2025-03-09 21:27:19 +01:00

11 lines
No EOL
331 B
Text

FROM python:3.11-slim-bookworm
LABEL authors="lagertonne"
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
WORKDIR /code
RUN apt update && apt install -y pkg-config mariadb-client default-libmysqlclient-dev build-essential
RUN pip install mysqlclient
COPY requirements.prod.txt /code/
RUN pip install -r requirements.prod.txt
COPY .. /code/