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
|
2022-11-08 16:38:07 +00:00
|
|
|
|
2023-03-28 16:01:07 +00:00
|
|
|
COPY dist .
|
2022-11-08 16:38:07 +00:00
|
|
|
RUN yarn install
|
|
|
|
|
2023-03-28 16:01:07 +00:00
|
|
|
COPY test ./test
|
|
|
|
COPY jest.config.js .
|
|
|
|
COPY ref-tests ../../tests
|
2022-11-08 16:38:07 +00:00
|
|
|
CMD ["yarn", "jest"]
|