2022-11-08 16:38:07 +00:00
|
|
|
# Exists as a test harness for building and running tests in Linux
|
|
|
|
|
2022-11-22 20:27:32 +00:00
|
|
|
|
|
|
|
FROM node:16-alpine
|
|
|
|
RUN apk update && apk add --no-cache g++ make python3
|
|
|
|
|
2022-11-08 16:38:07 +00:00
|
|
|
|
|
|
|
COPY ./dist/ /app/dist/
|
|
|
|
COPY test.ts /app
|
2022-11-17 02:31:30 +00:00
|
|
|
COPY testing_trusted_setups.json /app
|
2022-11-08 16:38:07 +00:00
|
|
|
COPY kzg.ts /app
|
|
|
|
COPY kzg.cxx /app
|
|
|
|
COPY package.json /app
|
|
|
|
COPY tsconfig.json /app
|
|
|
|
COPY babel.config.js /app
|
|
|
|
COPY jest.config.js /app
|
|
|
|
COPY binding.dist.gyp /app/binding.gyp
|
|
|
|
|
|
|
|
WORKDIR /app
|
|
|
|
|
|
|
|
RUN yarn install
|
|
|
|
|
|
|
|
CMD ["yarn", "jest"]
|