Add dev environment using docker

This commit is contained in:
lagertonne 2024-11-01 20:42:13 +01:00 committed by jedi
parent d13687a910
commit 242066ada4
4 changed files with 79 additions and 0 deletions

View file

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