fix publish?
Some checks failed
Deploy / deploy (ubuntu-latest, 2.44.0) (push) Has been cancelled
Publish Image / deploy (ubuntu-latest, 2.44.0) (push) Failing after 1m53s

Took 2 minutes
This commit is contained in:
Braydon 2024-10-09 22:40:07 -04:00
parent 72e624dfd1
commit d5cb54030c

View File

@ -12,7 +12,7 @@ RUN bun install --frozen-lockfile --quiet
FROM base AS builder
WORKDIR /usr/src/app
COPY --from=depends /usr/src/app/node_modules ./node_modules
COPY --from=depends /usr/src/app/config.json.example ./config.json
COPY config.json.example ./config.json
COPY . .
ENV NEXT_TELEMETRY_DISABLED 1
RUN bun run build