8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-16 00:13:12 +00:00
re2o/Dockerfile

9 lines
311 B
Text
Raw Normal View History

2024-03-03 10:44:43 +00:00
FROM python:3.9-bullseye
ENV PYTHONUNBUFFERED=1
2024-03-03 10:44:43 +00:00
RUN pip install poetry
2024-03-08 07:15:49 +00: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 10:44:43 +00:00
RUN poetry install --with dev --extras "postgresql"
COPY . /code/
CMD ./docker/docker-entrypoint.sh