Added Dockerfile.

This commit is contained in:
David Ball 2024-06-01 07:56:31 +00:00
parent a9b8d439f7
commit 61a092646e

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM node:20-alpine
WORKDIR /app
COPY package.json package.json
COPY package-lock.json package-lock.json
RUN npm install
COPY . .
CMD [ "node", "server.js" ]