We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff2f3bf commit 081c314Copy full SHA for 081c314
1 file changed
frontend/Dockerfile
@@ -13,11 +13,11 @@ ENV VITE_API_URL=$VITE_API_URL
13
ENV VITE_SUPABASE_URL=$VITE_SUPABASE_URL
14
ENV VITE_SUPABASE_ANON_KEY=$VITE_SUPABASE_ANON_KEY
15
16
-# Copy package files
17
-COPY package.json bun.lock* ./
+# Copy package files (lockfile required for deterministic builds)
+COPY package.json bun.lock ./
18
19
-# Install dependencies
20
-RUN bun install --frozen-lockfile || bun install
+# Install dependencies (fail if lockfile missing or outdated)
+RUN bun install --frozen-lockfile
21
22
# Copy source code
23
COPY . .
0 commit comments