16
1
mirror of https://github.com/cerc-io/watcher-ts synced 2025-03-08 20:59:22 +00:00
watcher-ts/Dockerfile
nikugogoi ba6b996e65
Deploy example contract in graph-node ()
* Deploy example contract in graph-node

* Add auth token in docker build for github packages

* Add steps for running tests in CI
2022-04-29 15:11:40 +05:30

11 lines
187 B
Docker

FROM node:16.13.1-alpine3.14
ARG NPM_AUTH_TOKEN
WORKDIR /app
COPY . .
RUN echo //npm.pkg.github.com/:_authToken=$NPM_AUTH_TOKEN > ~/.npmrc
RUN apk --update --no-cache add git && yarn