5c7d445500
* Add a stack for Gelato watcher
* Add option to create and use a state snapshot
* Add commands to create and import a state checkpoint
* Rename ipld-eth-server endpoint env variables
* Fix default env variable
Former-commit-id: 8b4b5deba8
13 lines
193 B
Docker
13 lines
193 B
Docker
FROM node:18.15.0-alpine3.16
|
|
|
|
RUN apk --update --no-cache add git python3 alpine-sdk bash
|
|
|
|
WORKDIR /app
|
|
|
|
COPY . .
|
|
|
|
RUN echo "Building gelato-watcher-ts" && \
|
|
yarn && yarn build
|
|
|
|
WORKDIR /app
|