Initial commit.

This commit is contained in:
Cameron Redmore 2025-02-15 12:07:29 +00:00
commit 55dacc0481
11 changed files with 1061 additions and 0 deletions

13
Dockerfile Normal file
View file

@ -0,0 +1,13 @@
FROM node:alpine
WORKDIR /app
RUN npm i -g pnpm
COPY . .
RUN pnpm install
EXPOSE 3000
CMD ["npm", "start"]