13 lines
223 B
Docker
Raw Normal View History

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