diff --git a/Dockerfile b/Dockerfile index 7deb041..a84d06f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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