Roy Crihfield
bc3a7934cf
* refactor vulcanize => cerc * update geth and cerc dependencies * update packages, ginkgo * refactor chain generation * update integration tests, contract, makefile * go embed contract code * rm old readme * move unit tests into package * rm ginkgo where not needed * use tx in ref integrity functions
16 lines
286 B
Docker
16 lines
286 B
Docker
# Downgrade from 18.16, see https://github.com/NomicFoundation/hardhat/issues/3877
|
|
FROM node:18.15-slim
|
|
|
|
ARG ETH_ADDR
|
|
ENV ETH_ADDR $ETH_ADDR
|
|
|
|
WORKDIR /usr/src/app
|
|
COPY package*.json ./
|
|
RUN npm ci
|
|
COPY . .
|
|
RUN npm run compile && ls -lah
|
|
|
|
EXPOSE 3000
|
|
|
|
ENTRYPOINT ["node", "src/index.js"]
|