modified: Dockerfile

This commit is contained in:
SimolZimol
2024-09-09 10:34:18 +02:00
parent cf0632dca7
commit 1bf827e031

View File

@@ -5,8 +5,8 @@ FROM python:3.9-alpine
WORKDIR /app
# Kopiere die requirements-Datei und installiere die Abhängigkeiten
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Kopiere den Rest des Codes
COPY . .