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

This commit is contained in:
Lee 2024-10-22 18:29:11 +01:00
parent 220cf31511
commit cf84ebe456
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
RUN bun install --frozen-lockfile
# 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
RUN bun install --frozen-lockfile
# Run the app
FROM base AS runner