Spaces:
Running
Running
Update Dockerfile to copy local packages for dependency installation
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
|
@@ -7,8 +7,9 @@ WORKDIR /app
|
|
| 7 |
# Install git for dependencies that might need it
|
| 8 |
RUN apk add --no-cache git
|
| 9 |
|
| 10 |
-
# Copy package files
|
| 11 |
COPY package.json bun.lockb* ./
|
|
|
|
| 12 |
|
| 13 |
# Install dependencies with bun
|
| 14 |
RUN bun install
|
|
|
|
| 7 |
# Install git for dependencies that might need it
|
| 8 |
RUN apk add --no-cache git
|
| 9 |
|
| 10 |
+
# Copy package files and local packages
|
| 11 |
COPY package.json bun.lockb* ./
|
| 12 |
+
COPY packages/ ./packages/
|
| 13 |
|
| 14 |
# Install dependencies with bun
|
| 15 |
RUN bun install
|