jurmy24 commited on
Commit
488d2e9
·
1 Parent(s): 74a884c

misc: no frozen lockfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -6,8 +6,8 @@ WORKDIR /app
6
  # Copy the viewer directory with all its contents
7
  COPY viewer/ .
8
 
9
- # Install dependencies
10
- RUN bun install --frozen-lockfile
11
 
12
  # Build the application with more verbose output
13
  RUN bun run build || (echo "Build failed. Check the error messages above." && exit 1)
 
6
  # Copy the viewer directory with all its contents
7
  COPY viewer/ .
8
 
9
+ # Install dependencies without frozen lockfile to allow migration from package-lock.json
10
+ RUN bun install
11
 
12
  # Build the application with more verbose output
13
  RUN bun run build || (echo "Build failed. Check the error messages above." && exit 1)