smh my head
Some checks failed
Deploy Backend / docker (ubuntu-latest) (push) Failing after 12s
Deploy Website / docker (ubuntu-latest) (push) Failing after 9s

This commit is contained in:
Lee 2024-10-22 18:25:26 +01:00
parent 3f63225f16
commit 220cf31511
2 changed files with 2 additions and 2 deletions

@ -4,7 +4,7 @@ FROM oven/bun:1.1.31-alpine AS base
FROM base AS depends
WORKDIR /app
COPY package.json bun.lockb* ./
RUN bun install --frozen-lockfile
RUN bun install
# Run the app
FROM base AS runner

@ -4,7 +4,7 @@ FROM oven/bun:1.1.31-alpine AS base
FROM base AS depends
WORKDIR /app
COPY package.json bun.lockb* ./
RUN bun install --frozen-lockfile
RUN bun install
# Run the app
FROM base AS runner