c3lf-system-3/deploy/dev/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

8 lines
No EOL
184 B
Text

FROM python:3.11-slim-bookworm
LABEL authors="lagertonne"
ENV PYTHONUNBUFFERED 1
RUN mkdir /code
WORKDIR /code
COPY requirements.dev.txt /code/
RUN pip install -r requirements.dev.txt