moved to daisyui

This commit is contained in:
2024-03-22 13:21:32 -04:00
parent 6f78bd8ce4
commit f56989b7dd
10 changed files with 250 additions and 565 deletions

View File

@@ -1,5 +1,5 @@
FROM node:19.7.0 AS builder
FROM node:20.11.1 AS builder
WORKDIR /app
COPY package*.json .
RUN npm ci
@@ -7,7 +7,7 @@ COPY . .
RUN npm run build
RUN npm prune --production
FROM node:19.7.0
FROM node:20.11.1
WORKDIR /app
COPY --from=builder /app/build build/
COPY --from=builder /app/node_modules node_modules/