From 1dbd5ca81533cbbea8a33461c7895cdf75928664 Mon Sep 17 00:00:00 2001
From: Mathis Burger <handymathis@gmail.com>
Date: Thu, 7 Mar 2024 18:15:58 +0100
Subject: [PATCH] [BUGFIX] Fixed pipeline

---
 Dockerfile | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Dockerfile b/Dockerfile
index 1a4f1b8..9240fa1 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,6 +2,7 @@ FROM node:20-alpine AS webBuild
 
 WORKDIR /web
 COPY /web .
+RUN cat schema.graphql
 RUN npm ci
 RUN npm run compile-pipeline
 RUN npm run build