2021-10-29 11:36:14 +02:00
|
|
|
ARG DOCKER_REGISTRY="registry.gitlab.com/grassrootseconomics"
|
|
|
|
|
|
|
|
FROM $DOCKER_REGISTRY/cic-base-images:python-3.8.6-dev-e8eb2ee2
|
2021-02-07 03:29:24 +01:00
|
|
|
|
2021-07-10 17:46:14 +02:00
|
|
|
#RUN pip install $pip_extra_index_url_flag cic-base[full_graph]==0.1.2a62
|
2021-10-20 17:02:36 +02:00
|
|
|
RUN apt-get install libffi-dev -y
|
|
|
|
|
|
|
|
|
|
|
|
ARG EXTRA_PIP_INDEX_URL=https://pip.grassrootseconomics.net:8433
|
|
|
|
ARG EXTRA_PIP_ARGS=""
|
|
|
|
ARG PIP_INDEX_URL=https://pypi.org/simple
|
2021-02-07 03:29:24 +01:00
|
|
|
|
2021-07-10 17:46:14 +02:00
|
|
|
COPY requirements.txt .
|
2021-02-07 03:29:24 +01:00
|
|
|
|
2021-10-29 11:36:14 +02:00
|
|
|
RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
|
|
|
pip install --index-url $PIP_INDEX_URL \
|
|
|
|
--pre \
|
|
|
|
--extra-index-url $EXTRA_PIP_INDEX_URL $EXTRA_PIP_ARGS \
|
2021-07-10 17:46:14 +02:00
|
|
|
-r requirements.txt
|
2021-02-07 03:29:24 +01:00
|
|
|
|
2021-07-23 17:15:30 +02:00
|
|
|
COPY . .
|
2021-07-10 17:46:14 +02:00
|
|
|
RUN python setup.py install
|
2021-02-11 05:44:15 +01:00
|
|
|
|
2021-10-20 17:02:36 +02:00
|
|
|
COPY docker/*.sh ./
|
|
|
|
RUN chmod +x /root/*.sh
|
2021-02-07 03:29:24 +01:00
|
|
|
|
|
|
|
# ini files in config directory defines the configurable parameters for the application
|
|
|
|
# they can all be overridden by environment variables
|
|
|
|
# to generate a list of environment variables from configuration, use: confini-dump -z <dir> (executable provided by confini package)
|
2021-07-10 17:46:14 +02:00
|
|
|
COPY .config/ /usr/local/etc/cic-notify/
|
|
|
|
COPY cic_notify/db/migrations/ /usr/local/share/cic-notify/alembic/
|
2021-02-07 03:29:24 +01:00
|
|
|
|
2021-07-30 19:05:25 +02:00
|
|
|
|
2021-07-10 17:46:14 +02:00
|
|
|
ENTRYPOINT []
|