c-kzg-4844/bindings/node.js/Dockerfile

13 lines
223 B
Docker
Raw Normal View History

2022-11-22 20:27:32 +00:00
FROM node:16-alpine
RUN apk update && apk add --no-cache g++ make python3
2023-03-28 16:01:07 +00:00
WORKDIR /app/bindings/node.js
2023-03-28 16:01:07 +00:00
COPY dist .
RUN yarn install
2023-03-28 16:01:07 +00:00
COPY test ./test
COPY jest.config.js .
COPY ref-tests ../../tests
CMD ["yarn", "jest"]