chore: manage bun.lockb in Docker and project configuration
- Update .dockerignore to exclude bun.lockb - Modify .gitignore to track bun.lockb - Update Dockerfile to remove bun.lockb copy step - Add bun.lockb binary lockfile to the repository
This commit is contained in:
@@ -73,6 +73,7 @@ temp/
|
|||||||
.cloud/
|
.cloud/
|
||||||
*.db
|
*.db
|
||||||
*.db-*
|
*.db-*
|
||||||
|
bun.lockb
|
||||||
.cursor/
|
.cursor/
|
||||||
.cursor*
|
.cursor*
|
||||||
.cursorconfig
|
.cursorconfig
|
||||||
2
.gitignore
vendored
2
.gitignore
vendored
@@ -65,7 +65,6 @@ home-assistant_v2.db-*
|
|||||||
package-lock.json
|
package-lock.json
|
||||||
yarn.lock
|
yarn.lock
|
||||||
pnpm-lock.yaml
|
pnpm-lock.yaml
|
||||||
bun.lockb
|
|
||||||
|
|
||||||
coverage/*
|
coverage/*
|
||||||
coverage/
|
coverage/
|
||||||
@@ -79,3 +78,4 @@ coverage/
|
|||||||
|
|
||||||
.bun/
|
.bun/
|
||||||
.cursorconfig
|
.cursorconfig
|
||||||
|
bun.lockb
|
||||||
@@ -5,7 +5,7 @@ FROM oven/bun:1.0.25
|
|||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
# Copy package files
|
# Copy package files
|
||||||
COPY package.json bun.lockb ./
|
COPY package.json ./
|
||||||
|
|
||||||
# Install dependencies
|
# Install dependencies
|
||||||
RUN bun install
|
RUN bun install
|
||||||
|
|||||||
Reference in New Issue
Block a user