From d5cb54030c60fc50d3abd61a7acd7ea9960dc86b Mon Sep 17 00:00:00 2001 From: Rainnny7 Date: Wed, 9 Oct 2024 22:40:07 -0400 Subject: [PATCH] fix publish? Took 2 minutes --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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