Deploy web #3

Merged
mattdimegs merged 2 commits from deploy-web into feature/settings-page 2025-06-10 21:31:18 +00:00
2 changed files with 15 additions and 0 deletions

1
web/.dockerignore Normal file
View file

@ -0,0 +1 @@
**/node_modules/**

14
web/Dockerfile Normal file
View file

@ -0,0 +1,14 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
COPY package-lock.json ./
COPY . ./web
RUN npm ci
COPY . .
EXPOSE 8080
EXPOSE 5172
CMD ["npm", "run", "dev"]