8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2025-02-04 06:24:22 +00:00
re2o/Dockerfile

9 lines
311 B
Text
Raw Normal View History

2024-03-03 11:44:43 +01:00
FROM python:3.9-bullseye
ENV PYTHONUNBUFFERED=1
2024-03-03 11:44:43 +01:00
RUN pip install poetry
2024-03-08 08:15:49 +01:00
WORKDIR /code
RUN apt-get update && apt-get install -y --no-install-recommends gettext-base libpq-dev
COPY pyproject.toml poetry.lock /code/
2024-03-03 11:44:43 +01:00
RUN poetry install --with dev --extras "postgresql"
COPY . /code/
CMD ./docker/docker-entrypoint.sh