10 lines
141 B
Docker
10 lines
141 B
Docker
# Pin specific version
|
|
# Use slim for reduced image size
|
|
FROM node:19.6-bullseye-slim
|
|
|
|
COPY . .
|
|
|
|
RUN npm install
|
|
|
|
CMD [ "node", "index.js" ]
|