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

13 lines
223 B
Docker

FROM node:16-alpine
RUN apk update && apk add --no-cache g++ make python3
WORKDIR /app/bindings/node.js
COPY dist .
RUN yarn install
COPY test ./test
COPY jest.config.js .
COPY ref-tests ../../tests
CMD ["yarn", "jest"]