Initial commit

This commit is contained in:
2025-02-19 16:02:37 -06:00
commit 55b9656077
21 changed files with 3222 additions and 0 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM node:18-alpine
LABEL maintainer="Alex Arbit <aarbit@gmail.com>"
WORKDIR /app
COPY package.json .
RUN npm install
COPY . .
RUN npm run build
EXPOSE 8083
CMD [ "npm", "run", "preview" ]