7 lines
77 B
Docker
7 lines
77 B
Docker
FROM node:19.4-bullseye
|
|
|
|
COPY . .
|
|
|
|
RUN npm install
|
|
|
|
CMD ["npm", "run", "dev"] |