Adds basic working version of code

This commit is contained in:
2024-06-02 23:40:27 -05:00
parent 7363fdf3b1
commit fba3c58a8f
21 changed files with 3292 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:18-alpine
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
RUN npm run build
EXPOSE 8083
CMD [ "npm", "run", "preview" ]