From 132722f9c24a70577e8fff4a9d4aa8ed6591b888 Mon Sep 17 00:00:00 2001 From: OCram85 Date: Fri, 26 Apr 2024 12:43:44 +0200 Subject: [PATCH] debug --- Dockerfile.vitepress | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile.vitepress b/Dockerfile.vitepress index 6c3e9ee..cb74f89 100644 --- a/Dockerfile.vitepress +++ b/Dockerfile.vitepress @@ -2,10 +2,11 @@ FROM oven/bun:1 as builder USER bun WORKDIR /app -COPY --chown=bun:bun package*.json bun.lockb ./ +COPY --chown=bun:bun package*.json bun.lockb /app/ ENV NODE_ENV=production RUN bun install --frozen-lockfile -COPY . . + +COPY --chown bun:bun . . RUN bun run --vite docs:build FROM caddy:2.7.6-alpine as prod