9 lines
135 B
Docker
9 lines
135 B
Docker
# Pin specific version
|
|
# Use alpine for reduced image size
|
|
FROM node:19.4-alpine
|
|
|
|
COPY . .
|
|
|
|
RUN npm install
|
|
|
|
CMD [ "node", "index.js" ] |