Skip to content

Commit 30b5e32

Browse files
authored
Merge pull request #3597 from IntersectMBO/chore/switch-into-npm-for-metadata-validation-dockerfile
chore: switch into npm in metadata validation dockerfile
2 parents b5b8072 + db265c8 commit 30b5e32

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

govtool/metadata-validation/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ WORKDIR /dist
77

88
COPY package*.json ./
99

10-
RUN yarn
10+
RUN npm install
1111

1212
COPY . /dist
1313

14-
RUN yarn build
14+
RUN npm run build
1515

1616
ENV IPFS_GATEWAY=$IPFS_GATEWAY
1717
ENV IPFS_PROJECT_ID=$IPFS_PROJECT_ID
1818

19-
ENTRYPOINT ["/bin/sh", "-c", "yarn start:prod"]
19+
ENTRYPOINT ["/bin/sh", "-c", "npm run start:prod"]

0 commit comments

Comments
 (0)