mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-23 20:03:11 +00:00
12 lines
No EOL
413 B
Docker
12 lines
No EOL
413 B
Docker
FROM python:3.9
|
|
ENV PYTHONUNBUFFERED=1
|
|
RUN apt-get update && apt-get install -y --no-install-recommends gettext-base libpq-dev
|
|
WORKDIR /code
|
|
COPY requirements.txt /code/
|
|
COPY postgresql-requirements.txt /code/
|
|
COPY dev-requirements.txt /code/
|
|
RUN pip install -r requirements.txt
|
|
RUN pip install -r postgresql-requirements.txt
|
|
RUN pip install -r dev-requirements.txt
|
|
COPY . /code/
|
|
CMD ./docker/docker-entrypoint.sh |