mirror of
https://github.com/status-im/c-kzg-4844.git
synced 2025-01-12 03:04:11 +00:00
13 lines
223 B
Docker
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"]
|