add toggle resource visibility closes #442

This commit is contained in:
miloschwartz
2025-03-31 10:10:28 -04:00
parent fbd78ab842
commit e7ca7fe89c
12 changed files with 121 additions and 16 deletions

View File

@@ -7,7 +7,7 @@ RUN npm ci
COPY . .
RUN npx drizzle-kit generate --dialect sqlite --schema ./server/db/schema.ts --out init
RUN npx drizzle-kit generate --dialect sqlite --schema ./server/db/schemas/ --out init
RUN npm run build
@@ -16,7 +16,7 @@ FROM node:20-alpine AS runner
WORKDIR /app
# Curl used for the health checks
RUN apk add --no-cache curl
RUN apk add --no-cache curl
COPY package.json package-lock.json ./
RUN npm ci --only=production && npm cache clean --force