6 lines
83 B
Docker
6 lines
83 B
Docker
FROM node:20-alpine
|
|
WORKDIR /app
|
|
COPY . .
|
|
RUN npm install
|
|
CMD ["node", "index.js"]
|