Feature/settings page #5

Merged
John4064 merged 23 commits from feature/settings-page into main 2025-06-11 03:09:49 +00:00
Showing only changes of commit d9627f8091 - Show all commits

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"]