Add server, Dockerfile, package.json: Dockerfile

This commit is contained in:
Zac Gaetano 2026-04-16 12:12:39 -04:00
parent f5e79448d8
commit 1cf66699cf

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
FROM node:22-slim
WORKDIR /app
COPY package.json .
RUN npm install
COPY server.js .
COPY public/ public/
EXPOSE 3233
CMD ["node", "server.js"]