Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
perrornet committed Jan 15, 2025
1 parent 3aaf332 commit aabec39
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Dockerfile.server
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@ COPY *.json ./
#
RUN npm install
RUN npx lerna bootstrap || true
RUN cat /home/app/node_modules/@ethereum-sourcify/core/package.json
# 将 /home/app/node_modules/@ethereum-sourcify/core/package.json 中的 '"^' 替换为 '"', 并保存
RUN sed -i 's/"^/""/g' /home/app/node_modules/@ethereum-sourcify/core/package.json && cat /home/app/node_modules/@ethereum-sourcify/core/package.json
RUN cd /home/app/node_modules/@ethereum-sourcify/core && npm run build
RUN cd /home/app && npx lerna bootstrap || true
RUN cd /home/app/node_modules/@ethereum-sourcify/verification && npm run build
Expand Down

0 comments on commit aabec39

Please sign in to comment.