forgot to add it

This commit is contained in:
Jon
2025-02-11 00:24:00 -07:00
parent 3e582af8ff
commit 892305e349

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM node:22
RUN mkdir /app
COPY . /app
WORKDIR /app
RUN npm ci
RUN npm run build
CMD ["npm", "run", "start"]