Add Dockerfile

This commit is contained in:
Zac Gaetano 2026-03-31 15:29:50 -04:00
parent d8899065b2
commit b199e5e59b

13
Dockerfile Normal file
View file

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