Skip to content

Commit

Permalink
fix: add alpha.6 build to docker (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtsukino authored Aug 20, 2024
1 parent 259f813 commit 3538f87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions apps/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ COPY . .
RUN curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y
RUN npm i
RUN npm i --prefix rs/verifier/
RUN npm i --prefix rs/0.1.0-alpha.6/
RUN npm run build

# Create image for the app by copying build artifacts from builder
Expand Down
2 changes: 1 addition & 1 deletion server/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ app.get('/ipfs/:cid', async (req, res) => {
* redirect to root if verification fails
*/
if (!jsonProof.version && jsonProof.notaryUrl) {
const proof = await verifyV6(
const proof = await verify(
file,
await fetchPublicKeyFromNotary(jsonProof.notaryUrl),
);
Expand Down

0 comments on commit 3538f87

Please sign in to comment.