2021-03-16 06:34:19 +01:00
|
|
|
# syntax = docker/dockerfile:1.2
|
2021-07-05 19:13:26 +02:00
|
|
|
FROM registry.gitlab.com/grassrootseconomics/cic-base-images:python-3.8.6-dev-55da5f4e
|
2021-01-24 21:16:22 +01:00
|
|
|
|
2021-07-05 19:13:26 +02:00
|
|
|
WORKDIR /root
|
2021-01-24 21:16:22 +01:00
|
|
|
|
2021-04-28 06:01:58 +02:00
|
|
|
RUN touch /etc/apt/sources.list.d/ethereum.list
|
|
|
|
RUN echo 'deb http://ppa.launchpad.net/ethereum/ethereum/ubuntu bionic main' > /etc/apt/sources.list.d/ethereum.list
|
|
|
|
RUN echo 'deb-src http://ppa.launchpad.net/ethereum/ethereum/ubuntu bionic main' >> /etc/apt/sources.list.d/ethereum.list
|
2021-07-05 19:13:26 +02:00
|
|
|
RUN cat /etc/apt/sources.list.d/ethereum.list
|
2021-04-28 06:01:58 +02:00
|
|
|
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 2A518C819BE37D2C2031944D1C52189C923F6CA9
|
|
|
|
|
2021-07-05 19:13:26 +02:00
|
|
|
#RUN apt-get install solc
|
2021-03-13 19:50:36 +01:00
|
|
|
|
|
|
|
RUN mkdir -vp /usr/local/etc/cic
|
|
|
|
|
|
|
|
ENV CONFINI_DIR /usr/local/etc/cic/
|
2021-07-16 15:21:07 +02:00
|
|
|
#RUN mkdir -vp $CONFINI_DIR
|
|
|
|
|
|
|
|
#ARG cic_config_commit=24287fb253196820f23ff8a7177b122f2cd99a11
|
|
|
|
#ARG cic_config_url=https://gitlab.com/grassrootseconomics/cic-config.git/
|
|
|
|
#RUN echo Install confini schema files && \
|
|
|
|
# git clone --depth 1 $cic_config_url cic-config && \
|
|
|
|
# cd cic-config && \
|
|
|
|
# git fetch --depth 1 origin $cic_config_commit && \
|
|
|
|
# git checkout $cic_config_commit && \
|
|
|
|
# cp -v *.ini $CONFINI_DIR
|
|
|
|
|
|
|
|
COPY config_template/ /usr/local/etc/cic/
|
2021-07-10 17:46:14 +02:00
|
|
|
COPY requirements.txt .
|
2021-06-03 20:43:13 +02:00
|
|
|
|
2021-07-05 12:58:08 +02:00
|
|
|
ARG pip_index_url=https://pypi.org/simple
|
2021-07-05 19:13:26 +02:00
|
|
|
ARG EXTRA_INDEX_URL="https://pip.grassrootseconomics.net:8433"
|
2021-08-17 18:52:17 +02:00
|
|
|
ARG EXTRA_PIP_ARGS=""
|
2021-07-05 19:13:26 +02:00
|
|
|
ARG GITLAB_PYTHON_REGISTRY="https://gitlab.com/api/v4/projects/27624814/packages/pypi/simple"
|
2021-07-05 12:58:08 +02:00
|
|
|
ARG pip_trusted_host=pypi.org
|
2021-07-05 19:13:26 +02:00
|
|
|
RUN --mount=type=cache,mode=0755,target=/root/.cache/pip \
|
|
|
|
pip install --index-url https://pypi.org/simple \
|
2021-07-05 12:58:08 +02:00
|
|
|
--force-reinstall \
|
|
|
|
--trusted-host $pip_trusted_host \
|
2021-08-17 18:52:17 +02:00
|
|
|
--extra-index-url $GITLAB_PYTHON_REGISTRY --extra-index-url $EXTRA_INDEX_URL $EXTRA_PIP_ARGS \
|
2021-07-05 19:13:26 +02:00
|
|
|
-r requirements.txt
|
2021-07-05 12:58:08 +02:00
|
|
|
|
2021-07-10 17:46:14 +02:00
|
|
|
COPY . .
|
2021-07-05 19:13:26 +02:00
|
|
|
RUN chmod +x *.sh
|