You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
486 B
19 lines
486 B
10 months ago
|
# Verwenden Sie ein Basis-Image mit Python
|
||
|
FROM python:3.8
|
||
|
|
||
|
# Setzen Sie das Arbeitsverzeichnis innerhalb des Containers
|
||
|
WORKDIR /app
|
||
|
|
||
|
# Kopieren Sie die Anwendungsabhängigkeiten in das Container-Image
|
||
|
COPY requirements.txt .
|
||
|
COPY FIB/*.py /app
|
||
|
|
||
|
# Installieren Sie die Abhängigkeiten
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
# Kopieren Sie den Rest des Codes in das Container-Image
|
||
|
COPY . .
|
||
|
|
||
|
# Setzen Sie den Befehl aus, der Ihre Anwendung startet
|
||
|
CMD ["python", "app.py"]
|