Skip to content

Commit

Permalink
fix metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
ElessarST committed Oct 11, 2024
1 parent 451a364 commit 4f0e96e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions indexer/Dockerfile-explorer
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ ADD assets assets
ADD db db
# remove if needed
ADD schema.graphql .
RUN npm ci
RUN npm ci --force
ADD tsconfig.json .
ADD src src
RUN npm run build
Expand All @@ -20,7 +20,7 @@ FROM node-with-gyp AS deps
WORKDIR /squid
ADD package.json .
ADD package-lock.json .
RUN npm ci --production
RUN npm ci --production --force

FROM node AS squid
RUN npm i -g @subsquid/cli@latest
Expand Down
2 changes: 1 addition & 1 deletion indexer/Dockerfile-indexer
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ RUN npm i -g [email protected]
WORKDIR /squid
ADD package.json .
ADD package-lock.json .
RUN npm i @types/node
RUN npm i @types/node --force
# remove if needed
ADD assets assets
# remove if needed
Expand Down

0 comments on commit 4f0e96e

Please sign in to comment.