Verwende allgemeinere Basis-Images für bessere Kompatibilität

- Ändere node:20-alpine zu node:lts-alpine für Frontend
- Ändere python:3.11-slim zu python:3-slim für Backend
- Ermöglicht Cache-Nutzung, wenn diese allgemeineren Images bereits auf dem System vorhanden sind
- Verhindert Netzwerk-Timeouts beim Pullen spezifischer Versionen

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Till Tomczak 2025-04-01 09:59:47 +02:00
parent 0109eebab6
commit f64ca592c3
2 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
FROM python:3.11-slim
FROM python:3-slim
WORKDIR /app

View File

@ -1,4 +1,4 @@
FROM node:20-alpine
FROM node:lts-alpine
WORKDIR /app