Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM oven/bun:1.3.13 AS build

WORKDIR /app

COPY package.json bun.lock bunfig.toml tsconfig.json build.ts ./
COPY package.json bun.lock bunfig.toml tsconfig.json bun-env.d.ts build.ts ./
COPY src ./src
RUN bun install --frozen-lockfile
RUN bun run build
Expand All @@ -18,7 +18,7 @@ ENV DATABASE_PROVIDER=sqlite
ENV SQLITE_PATH=/data/link.sqlite
ENV ADMIN_ENABLED=false

COPY package.json bun.lock bunfig.toml tsconfig.json build.ts ./
COPY package.json bun.lock bunfig.toml tsconfig.json bun-env.d.ts build.ts ./
COPY --from=build /app/node_modules ./node_modules
COPY src ./src

Expand Down