6 lines
92 B
Text
6 lines
92 B
Text
FROM docker.io/node:22
|
|
|
|
RUN mkdir /web
|
|
WORKDIR /web
|
|
COPY package.json /web/
|
|
RUN npm install
|