Add gerbil builder container #150

Merged
telackey merged 3 commits from dboreham/gerbil-builder into main 2023-01-23 14:24:55 +00:00
Showing only changes of commit 46bcc2f882 - Show all commits

View File

@ -2,16 +2,19 @@
FROM gerbil/ubuntu
# Install the Solidity compiler (latest stable version)
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && export DEBCONF_NOWARNINGS="yes" \
RUN apt-get update && export DEBIAN_FRONTEND=noninteractive && export DEBCONF_NOWARNINGS="yes" && \
apt-get install -y software-properties-common && \
add-apt-repository ppa:ethereum/ethereum && \
apt-get update && apt-get install -y solc && \
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN mkdir /scripts
COPY install-dependencies.sh /scripts
RUN bash /scripts/install-dependencies.sh
COPY entrypoint.sh .
ENTRYPOINT ["./entrypoint.sh"]
# Needed to prevent git from raging about /src
RUN git config --global --add safe.directory /src
COPY entrypoint.sh /scripts
ENTRYPOINT ["/scripts/entrypoint.sh"]