forked from cerc-io/stack-orchestrator
Nabarun Gogoi
f23c22d5b9
* Remove laconicd to use optimism endpoint
* Use fixturenet-optimism stack for mobymask-v2-watcher
* Fix setting L1 account private key in mobymask-v2 stack
Former-commit-id: b266ac78b4
14 lines
180 B
Docker
14 lines
180 B
Docker
FROM node:16.17.1-alpine3.16
|
|
|
|
RUN apk --update --no-cache add python3 alpine-sdk jq
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN yarn
|
|
|
|
# Add scripts
|
|
RUN mkdir /scripts
|
|
ENV PATH="${PATH}:/scripts"
|