chore: remove bun.lockb
All checks were successful
CI / Test (pull_request) Successful in 38s

This commit is contained in:
2025-03-25 21:50:59 +01:00
parent 8e425b4f12
commit 074a9aa4ab
3 changed files with 5 additions and 5 deletions

View File

@@ -21,7 +21,7 @@ jobs:
bun-version-file: ".bun-version" bun-version-file: ".bun-version"
- name: Install dependencies - name: Install dependencies
run: bun install --frozen-lockfile run: bun install
- name: Run lint - name: Run lint
run: bun run check:code run: bun run check:code

View File

@@ -4,12 +4,12 @@ WORKDIR /app
FROM base AS install FROM base AS install
RUN mkdir -p /temp/dev RUN mkdir -p /temp/dev
COPY package.json bun.lockb /temp/dev/ COPY package.json /temp/dev/
RUN cd /temp/dev && bun install --frozen-lockfile RUN cd /temp/dev && bun install
RUN mkdir -p /temp/prod RUN mkdir -p /temp/prod
COPY package.json bun.lockb /temp/prod/ COPY package.json /temp/prod/
RUN cd /temp/prod && bun install --frozen-lockfile --production RUN cd /temp/prod && bun install --production
FROM base AS build FROM base AS build
COPY --from=install /temp/dev/node_modules node_modules COPY --from=install /temp/dev/node_modules node_modules

BIN
bun.lockb

Binary file not shown.