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.
23 lines
624 B
23 lines
624 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 .
|
||
|
|
||
|
# Installieren Sie die Abhängigkeiten
|
||
|
RUN pip install --no-cache-dir -r requirements.txt
|
||
|
|
||
|
# Geben Sie den Port an, auf dem Ihre Flask-Anwendung ausgeführt wird
|
||
|
EXPOSE 8085
|
||
|
|
||
|
# Kopieren Sie den Rest des Codes in das Container-Image
|
||
|
COPY fib/*.py /app/
|
||
|
COPY fib/static /app/static
|
||
|
COPY fib/templates /app/templates
|
||
|
|
||
|
# Setzen Sie den Befehl aus, der Ihre Anwendung startet
|
||
|
CMD ["python", "app.py"]
|