Skip to content

Commit 3538f87

Browse files
authored
fix: add alpha.6 build to docker (#28)
1 parent 259f813 commit 3538f87

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

apps/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ COPY . .
99
RUN curl --proto '=https' --tlsv1.2 https://sh.rustup.rs -sSf | sh -s -- -y
1010
RUN npm i
1111
RUN npm i --prefix rs/verifier/
12+
RUN npm i --prefix rs/0.1.0-alpha.6/
1213
RUN npm run build
1314

1415
# Create image for the app by copying build artifacts from builder

server/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ app.get('/ipfs/:cid', async (req, res) => {
9797
* redirect to root if verification fails
9898
*/
9999
if (!jsonProof.version && jsonProof.notaryUrl) {
100-
const proof = await verifyV6(
100+
const proof = await verify(
101101
file,
102102
await fetchPublicKeyFromNotary(jsonProof.notaryUrl),
103103
);

0 commit comments

Comments
 (0)