Spaces:
Running
Running
misc: no frozen lockfile
Browse files- 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
|
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)
|