Initial commit
This commit is contained in:
commit
793bb6a488
182 changed files with 17153 additions and 0 deletions
26
docker-dev/Dockerfile
Normal file
26
docker-dev/Dockerfile
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
FROM python:3.11.8-bookworm AS aemo-fr
|
||||
|
||||
USER root
|
||||
|
||||
RUN mkdir -p /src
|
||||
WORKDIR /src
|
||||
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
poppler-utils \
|
||||
libreoffice-writer \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY requirements.txt /usr/local/pip-requirements/
|
||||
RUN pip3 install \
|
||||
--quiet \
|
||||
--no-binary :none: \
|
||||
-r /usr/local/pip-requirements/requirements.txt
|
||||
|
||||
|
||||
FROM aemo-fr AS aemo-fr-dev
|
||||
|
||||
COPY requirements_dev.txt /usr/local/pip-requirements/
|
||||
RUN pip3 install \
|
||||
--quiet \
|
||||
--no-binary :none: \
|
||||
-r /usr/local/pip-requirements/requirements_dev.txt
|
||||
Loading…
Add table
Add a link
Reference in a new issue