5 lines
No EOL
70 B
Docker
5 lines
No EOL
70 B
Docker
FROM node:18
|
|
COPY . .
|
|
RUN npm install
|
|
EXPOSE 3000
|
|
CMD ["npm", "start"] |