chore: restrukturierung der microservices in dev/lobby und dev/sector-dev (monorepo)

This commit is contained in:
2026-06-08 22:08:44 +02:00
parent 87f4d935c4
commit c1eb570b43
90 changed files with 10481 additions and 2 deletions
@@ -0,0 +1,16 @@
# Basis-Image für das Frontend
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
# Exponiere den standardmäßigen Vite-Port
EXPOSE 5173
# Startet den Vite-Dev-Server mit HMR (Hot Module Replacement)
CMD ["npm", "run", "dev"]