# FROM grassrootseconomics:cic #FROM python:3.8.6-alpine FROM python:3.8.6-slim-buster #COPY --from=0 /usr/local/share/cic/solidity/ /usr/local/share/cic/solidity/ WORKDIR /usr/src/cic-eth ARG pip_extra_index_url_flag='--index https://pypi.org/simple --extra-index-url https://pip.grassrootseconomics.net:8433' ARG root_requirement_file='requirements.txt' #RUN apk update && \ # apk add gcc musl-dev gnupg libpq #RUN apk add postgresql-dev #RUN apk add linux-headers #RUN apk add libffi-dev RUN apt-get update && \ apt install -y gcc gnupg libpq-dev wget make g++ gnupg bash procps # Copy shared requirements from top of mono-repo RUN echo "copying root req file ${root_requirement_file}" COPY $root_requirement_file . RUN pip install -r $root_requirement_file $pip_extra_index_url_flag COPY cic-eth/scripts/ scripts/ COPY cic-eth/setup.cfg cic-eth/setup.py ./ COPY cic-eth/cic_eth/ cic_eth/ # Copy app specific requirements COPY cic-eth/requirements.txt . COPY cic-eth/test_requirements.txt . RUN pip install $pip_extra_index_url_flag . COPY cic-eth/docker/* ./ RUN chmod 755 *.sh COPY cic-eth/tests/ tests/ # # 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 (executable provided by confini package) COPY cic-eth/config/ /usr/local/etc/cic-eth/ COPY cic-eth/cic_eth/db/migrations/ /usr/local/share/cic-eth/alembic/ COPY cic-eth/crypto_dev_signer_config/ /usr/local/etc/crypto-dev-signer/ RUN apt-get install -y git && \ git clone https://gitlab.com/grassrootseconomics/cic-contracts.git && \ mkdir -p /usr/local/share/cic/solidity && \ cp -R cic-contracts/abis /usr/local/share/cic/solidity/abi