4 lines
69 B
Docker
4 lines
69 B
Docker
|
FROM node:18-alpine
|
||
|
COPY . .
|
||
|
RUN npm install
|
||
|
CMD ["node", "index.js"]
|