this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(docker): copy bun.lock in image build

alice fd2249d8 1a12c02b

+2 -2
+2 -2
Dockerfile
··· 3 3 WORKDIR /app 4 4 5 5 # Copy package files first for better caching 6 - COPY package.json bun.lockb* ./ 6 + COPY package.json bun.lock* ./ 7 7 8 8 # Install all dependencies (including dev for build) 9 9 RUN bun install --frozen-lockfile ··· 20 20 RUN apt-get update && apt-get install -y curl && rm -rf /var/lib/apt/lists/* 21 21 22 22 # Copy package files 23 - COPY package.json bun.lockb* ./ 23 + COPY package.json bun.lock* ./ 24 24 25 25 # Install production dependencies only 26 26 RUN bun install --frozen-lockfile --production