2354828481
* Add block explorer to docker containers * Add network explorer to docker containers A private token is needed to build this container. * Update docker README
9 lines
206 B
Docker
9 lines
206 B
Docker
FROM node:14
|
|
ARG PERSONAL_TOKEN
|
|
RUN git clone "https://oauth2:${PERSONAL_TOKEN}@gitlab.nymte.ch/jessgess/network-explorer.git"
|
|
|
|
WORKDIR network-explorer
|
|
COPY ./setup.sh /setup.sh
|
|
RUN /setup.sh
|
|
CMD yarn dev
|