8
0
Fork 0
mirror of https://gitlab2.federez.net/re2o/re2o synced 2024-11-06 01:46:27 +00:00
re2o/Dockerfile

10 lines
323 B
Text
Raw Normal View History

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