363a0b733f
* Fetch account creds served by geth service
* Use fetched account creds in mobymask-v2 stack
Former-commit-id: eb777b0b47
14 lines
195 B
Docker
14 lines
195 B
Docker
FROM node:16.17.1-alpine3.16
|
|
|
|
RUN apk --update --no-cache add python3 alpine-sdk jq bash curl wget
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN yarn
|
|
|
|
# Add scripts
|
|
RUN mkdir /scripts
|
|
ENV PATH="${PATH}:/scripts"
|