add http-server part 7.9.1
All checks were successful
ci / build (push) Successful in 1m16s

This commit is contained in:
Christopher Hase 2025-04-11 11:32:34 +02:00
parent bb8c2f06fd
commit c926227245

View file

@ -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