Add Dockerfile

This commit is contained in:
Zac Gaetano 2026-03-31 15:29:53 -04:00
parent 85e251d60f
commit 621fe48ac7

12
Dockerfile Normal file
View file

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