add docker env for integration testing

This commit is contained in:
j3d1 2024-11-08 20:04:43 +01:00
parent 9f5b420095
commit 38a24e4e06
6 changed files with 101 additions and 1 deletions

View file

@ -0,0 +1,6 @@
FROM docker.io/node:22
RUN mkdir /web
WORKDIR /web
COPY package.json /web/
RUN npm install