From c6314fbda07bce3240207b29259816ecf688f80b Mon Sep 17 00:00:00 2001 From: Andreas Hilbig Date: Tue, 13 Jan 2026 15:03:44 +0100 Subject: [PATCH] chore: Replace copying of `schema.graphql` with `extensions` in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 56dee03..225d8c4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,7 +17,7 @@ ARG API_VERSION ENV API_VERSION=${API_VERSION} WORKDIR /usr/app COPY package*.json ./ -COPY schema.graphql ./ +COPY extensions ./ RUN npm install --production COPY --from=builder /usr/app/dist ./dist