Add Dockerfile

This commit is contained in:
Zac Gaetano 2026-03-31 15:29:48 -04:00
parent 79e2b959e2
commit 9f961ba286

7
Dockerfile Normal file
View file

@ -0,0 +1,7 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
EXPOSE 3100
CMD ["node", "server.js"]