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

13 lines
204 B
Docker

# Pin specific version
# Use slim for reduced image size
FROM node:19.6-bullseye-slim
# Specify working directory other than /
WORKDIR /usr/src/app
COPY . .
RUN npm install
CMD [ "node", "index.js" ]