2018-07-24 20:26:32 +00:00
|
|
|
# multi-stage builder images
|
|
|
|
# ------------------------------------------------------------------------------
|
2018-07-04 20:51:25 +00:00
|
|
|
|
2018-07-24 22:19:35 +00:00
|
|
|
ARG NODE_TAG=8.11.3-stretch
|
|
|
|
FROM node:${NODE_TAG} as builder-base
|
2018-07-04 20:51:25 +00:00
|
|
|
|
2018-07-24 20:26:32 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
2018-07-23 04:02:01 +00:00
|
|
|
|
2018-07-24 20:26:32 +00:00
|
|
|
FROM builder-base as builder-geth
|
2018-07-24 22:19:35 +00:00
|
|
|
ARG GETH_VERSION=1.8.11-dea1ce05
|
2018-07-24 20:26:32 +00:00
|
|
|
RUN export url="https://gethstore.blob.core.windows.net/builds" \
|
|
|
|
&& export platform="geth-alltools-linux-amd64" \
|
|
|
|
&& curl -fsSLO --compressed "${url}/${platform}-${GETH_VERSION}.tar.gz" \
|
|
|
|
&& tar -xvzf geth-alltools* \
|
|
|
|
&& rm geth-alltools*/COPYING
|
2018-07-23 04:02:01 +00:00
|
|
|
|
2018-07-24 20:26:32 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
FROM builder-base as builder-ipfs
|
2018-07-24 22:19:35 +00:00
|
|
|
ARG IPFS_VERSION=0.4.15
|
2018-07-24 20:26:32 +00:00
|
|
|
RUN export url="https://dist.ipfs.io/go-ipfs" \
|
|
|
|
&& export ver="v${IPFS_VERSION}/go-ipfs_v${IPFS_VERSION}" \
|
|
|
|
&& export platform="linux-amd64" \
|
|
|
|
&& curl -fsSLO --compressed "${url}/${ver}_${platform}.tar.gz" \
|
|
|
|
&& tar -xvzf go-ipfs*
|
|
|
|
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
FROM builder-base as builder-micro
|
2018-07-24 22:19:35 +00:00
|
|
|
ARG MICRO_VERSION=1.4.0
|
2018-07-24 20:26:32 +00:00
|
|
|
RUN export url="https://github.com/zyedidia/micro/releases/download" \
|
|
|
|
&& export ver="v${MICRO_VERSION}/micro-${MICRO_VERSION}" \
|
|
|
|
&& export platform="linux64" \
|
|
|
|
&& curl -fsSLO --compressed "${url}/${ver}-${platform}.tar.gz" \
|
|
|
|
&& tar -xvzf micro-${MICRO_VERSION}*
|
2018-07-09 16:13:52 +00:00
|
|
|
|
2018-07-24 20:26:32 +00:00
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
FROM builder-base as builder-suexec
|
2018-07-24 22:19:35 +00:00
|
|
|
ARG SUEXEC_VERSION=v0.2
|
2018-07-24 20:26:32 +00:00
|
|
|
RUN git clone --branch ${SUEXEC_VERSION} \
|
|
|
|
--depth 1 \
|
|
|
|
https://github.com/ncopa/su-exec.git 2> /dev/null \
|
|
|
|
&& cd su-exec \
|
|
|
|
&& make
|
|
|
|
|
|
|
|
# final image
|
|
|
|
# ------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
FROM builder-base
|
|
|
|
|
|
|
|
LABEL maintainer="Andre Medeiros <andre@status.im>"
|
|
|
|
|
|
|
|
ARG __CODESET
|
|
|
|
ARG __LANG
|
|
|
|
ARG __LANGUAGE
|
|
|
|
ARG __LC_ALL
|
|
|
|
RUN export DEBIAN_FRONTEND=noninteractive \
|
|
|
|
&& apt-get update \
|
|
|
|
&& apt-get install -y locales \
|
|
|
|
&& export __CODESET=${__CODESET:-UTF-8} \
|
|
|
|
&& export __LANG=${__LANG:-en_US.$__CODESET} \
|
|
|
|
&& export __LANGUAGE=${__LANGUAGE:-en_US:en} \
|
|
|
|
&& export __LC_ALL=${__LC_ALL:-en_US.$__CODESET} \
|
|
|
|
&& sed -i \
|
|
|
|
-e "s/# ${__LANG} ${__CODESET}/${__LANG} ${__CODESET}/" \
|
|
|
|
/etc/locale.gen \
|
|
|
|
&& locale-gen --purge "${__LANG}" \
|
|
|
|
&& dpkg-reconfigure locales \
|
|
|
|
&& update-locale LANG=${__LANG} LANGUAGE=${__LANGUAGE} LC_ALL=${__LC_ALL} \
|
|
|
|
&& unset DEBIAN_FRONTEND \
|
|
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
|
|
&& adduser --disabled-password --shell /bin/bash --gecos "" embark \
|
2018-07-23 04:02:01 +00:00
|
|
|
&& mkdir -p /dapp \
|
2018-07-24 20:26:32 +00:00
|
|
|
&& chown embark:embark /dapp \
|
|
|
|
&& curl -fsSLO --compressed "https://bootstrap.pypa.io/get-pip.py" \
|
|
|
|
&& python get-pip.py \
|
|
|
|
&& rm get-pip.py
|
2018-07-24 22:29:23 +00:00
|
|
|
|
2018-07-24 20:26:32 +00:00
|
|
|
ENV LANG=${__LANG:-en_US.${__CODESET:-UTF-8}}
|
|
|
|
COPY --from=builder-ipfs /go-ipfs/ipfs /usr/local/bin/
|
2018-07-24 22:19:35 +00:00
|
|
|
|
2018-07-23 04:02:01 +00:00
|
|
|
USER embark
|
|
|
|
SHELL ["/bin/bash", "-c"]
|
|
|
|
WORKDIR /home/embark
|
2018-07-24 20:26:32 +00:00
|
|
|
COPY .bash_env \
|
|
|
|
.bash_env_nvm_load \
|
|
|
|
.bash_env_nvm_unload \
|
|
|
|
.bashrc \
|
|
|
|
.npmrc \
|
|
|
|
./
|
2018-07-24 22:19:35 +00:00
|
|
|
ARG EMBARK_VERSION=3.1.5
|
|
|
|
ARG GANACHE_VERSION=6.1.4
|
|
|
|
ARG NODEENV_VERSION=1.3.2
|
|
|
|
ARG NVM_VERSION=v0.33.11
|
2018-07-24 20:26:32 +00:00
|
|
|
RUN mkdir -p .npm-packages \
|
|
|
|
.local/nodeenv \
|
|
|
|
&& . .bash_env \
|
2018-07-23 04:02:01 +00:00
|
|
|
&& pip install --user nodeenv==${NODEENV_VERSION} \
|
2018-07-24 21:39:53 +00:00
|
|
|
&& git clone --branch ${NVM_VERSION} \
|
|
|
|
--depth 1 \
|
2018-07-24 20:26:32 +00:00
|
|
|
https://github.com/creationix/nvm.git .nvm 2> /dev/null \
|
2018-07-23 04:02:01 +00:00
|
|
|
&& npm install -g "embark@${EMBARK_VERSION}" \
|
2018-07-24 20:26:32 +00:00
|
|
|
"ganache-cli@${GANACHE_VERSION}" \
|
2018-07-09 16:13:52 +00:00
|
|
|
&& ipfs init \
|
2018-07-23 04:02:01 +00:00
|
|
|
&& ipfs config --json Addresses.API '"/ip4/0.0.0.0/tcp/5001"' \
|
|
|
|
&& ipfs config --json Addresses.Gateway '"/ip4/0.0.0.0/tcp/8080"' \
|
|
|
|
&& ipfs config --json API.HTTPHeaders.Access-Control-Allow-Origin '["*"]' \
|
|
|
|
&& ipfs config --json API.HTTPHeaders.Access-Control-Allow-Methods '["GET", "POST", "PUT"]'
|
2018-07-04 20:51:25 +00:00
|
|
|
|
2018-07-23 04:02:01 +00:00
|
|
|
USER root
|
|
|
|
SHELL ["/bin/sh", "-c"]
|
2018-07-24 20:26:32 +00:00
|
|
|
WORKDIR /
|
|
|
|
COPY docker-entrypoint.sh \
|
|
|
|
user-entrypoint.sh \
|
|
|
|
install-extras.sh \
|
|
|
|
/usr/local/bin/
|
|
|
|
|
|
|
|
WORKDIR /dapp
|
2018-07-23 04:02:01 +00:00
|
|
|
ENTRYPOINT ["docker-entrypoint.sh"]
|
2018-07-23 04:14:29 +00:00
|
|
|
CMD ["embark", "run"]
|
2018-07-24 20:26:32 +00:00
|
|
|
# Embark: 8000 8545 8546
|
|
|
|
# Go Ethereum: 30301/udp 30303 8545 8546 (when proxied: 8555 8556)
|
|
|
|
# IPFS: 5001 8080
|
|
|
|
# Swarm: 8500
|
|
|
|
EXPOSE 5001 8000 8080 8500 8545 8546 8555 8556 30301/udp 30303
|
|
|
|
|
|
|
|
COPY --from=builder-geth /geth-alltools* /usr/local/bin/
|
|
|
|
COPY --from=builder-micro /micro*/micro /usr/local/bin/
|
|
|
|
COPY --from=builder-suexec /su-exec/su-exec /usr/local/bin/
|