add lockfile

This commit is contained in:
thonk?
2023-09-30 19:59:01 -04:00
committed by GitHub
parent dc1b2ff576
commit 5940052e67
+14
View File
@@ -0,0 +1,14 @@
# syntax=docker/dockerfile:1
FROM node:19-bullseye
ENV NODE_ENV=production
WORKDIR /app
COPY ["package.json", "package-lock.json*", "./"]
RUN npm install
COPY . .
CMD [ "node", "index.js" ]