Dockerfile
This commit is contained in:
parent
f0a4c2c724
commit
d8982e7f8c
@ -5,10 +5,11 @@ COPY package*.json ./
|
|||||||
RUN npm install
|
RUN npm install
|
||||||
|
|
||||||
COPY . .
|
COPY . .
|
||||||
RUN npm run build && test -d dist || (echo "dist/ NICHT gefunden" && ls -la /app && exit 1)
|
|
||||||
|
|
||||||
|
RUN npm run build || (echo "npm run build FEHLGESCHLAGEN" && exit 1)
|
||||||
|
|
||||||
|
RUN echo "📁 Inhalt von /app nach Build:" && ls -la /app && ls -la /app/dist || true
|
||||||
|
|
||||||
FROM nginx:alpine
|
FROM nginx:alpine
|
||||||
COPY --from=builder /app/dist /usr/share/nginx/html
|
COPY --from=builder /app/dist /usr/share/nginx/html
|
||||||
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||||
Loading…
Reference in New Issue
Block a user