eccrypto/.buildbot/node/Dockerfile
Lee Miller 7946c2ff2e
Try to run the existing tests in buildbot,
docker-test.sh - is an alternative script to run locally.
2023-01-03 18:00:34 +02:00

15 lines
233 B
Docker

FROM node:16
RUN apt-get update
RUN apt-get install -yq --no-install-suggests --no-install-recommends xauth xvfb
WORKDIR /app
COPY package*.json binding.gyp *.cc ./
RUN npm install
RUN npm audit fix
RUN mkdir -p ../out
COPY . .