diff --git a/Dockerfile b/Dockerfile index d761fb3..d5b6796 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,6 @@ WORKDIR /app COPY package*.json ./ COPY tsconfig.json ./ COPY tsconfig.backend.json ./ -COPY tsconfig.broker.json ./ COPY . . ### NEW ### @@ -15,9 +14,6 @@ RUN npm install cors RUN npm install -g npm@11.2.0 RUN npm install -# Zuerst broker.ts zu broker.mjs kompilieren -#RUN npx tsc -p tsconfig.broker.json - # Danach server.ts kompilieren, nachdem broker.mjs existiert RUN npx tsc -p tsconfig.backend.json