include contract addresses json in docker image
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 28s Details

This commit is contained in:
Ladd Hoffman 2024-04-20 12:46:44 -05:00
parent 04d6625816
commit a500f01b69
2 changed files with 3 additions and 2 deletions

View File

@ -2,4 +2,5 @@ PORT=3000
DATA_DIR="./data"
SEMANTIC_SCHOLAR_API_KEY=
ETH_NETWORK="localhost"
ETH_PRIVATE_KEY=
ETH_PRIVATE_KEY=
INFURA_API_KEY=

View File

@ -2,7 +2,7 @@ FROM node
WORKDIR /app
ADD package.json package-lock.json src/ /app/
ADD package.json package-lock.json contract-addresses.json src/ /app/
RUN npm ci