6 lines
76 B
Docker
6 lines
76 B
Docker
FROM node:20
|
|
ADD src /app
|
|
WORKDIR /app
|
|
RUN npm install
|
|
CMD ["npm", "start"]
|