test
Some checks failed
Deploy & Publish Image / deploy (ubuntu-latest, 2.44.0) (push) Failing after 22s

Took 14 minutes
This commit is contained in:
Braydon 2024-10-10 13:38:06 -04:00
parent f8cbb90ef4
commit 938bf248cc

View File

@ -12,8 +12,6 @@ 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 config.json.example ./config.json
COPY docs ./docs
COPY . .
ENV NEXT_TELEMETRY_DISABLED 1
RUN bun run build
@ -34,8 +32,8 @@ COPY --from=builder --chown=nextjs:nextjs /usr/src/app/.next ./.next
COPY --from=builder --chown=nextjs:nextjs /usr/src/app/public ./public
COPY --from=builder --chown=nextjs:nextjs /usr/src/app/next.config.mjs ./next.config.mjs
COPY --from=builder --chown=nextjs:nextjs /usr/src/app/package.json ./package.json
COPY --from=builder --chown=nextjs:nextjs /usr/src/app/config.json ./config.json
COPY --from=builder --chown=nextjs:nextjs /usr/src/app/docs ./docs
COPY --from=builder --chown=nextjs:nextjs /usr/src/app/config.json.example ./config.json
ENV NODE_ENV production