mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-19 20:36:19 +00:00
nikugogoi
ba6b996e65
* Deploy example contract in graph-node * Add auth token in docker build for github packages * Add steps for running tests in CI
11 lines
187 B
Docker
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
|