Dockerfile

This commit is contained in:
MarcWieland 2025-07-25 15:28:57 +02:00
parent 4e7da223eb
commit f0a4c2c724

View File

@ -5,7 +5,8 @@ COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build || (echo "BUILD FEHLGESCHLAGEN" && cat /app/npm-debug.log || true)
RUN npm run build && test -d dist || (echo "dist/ NICHT gefunden" && ls -la /app && exit 1)
FROM nginx:alpine