6 lines
89 B
Text
6 lines
89 B
Text
FROM node:22-alpine
|
|
|
|
RUN mkdir /web
|
|
WORKDIR /web
|
|
COPY package.json /web/
|
|
RUN npm install
|