Files
2023-03-10 15:08:38 -05:00

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" ]