|
|
@ -1,5 +1,5 @@ |
|
|
|
# Python Basis-Image |
|
|
|
FROM python:3.8 |
|
|
|
FROM python:3.11-alpine |
|
|
|
|
|
|
|
# Arbeitsverzeichnis innerhalb des Containers |
|
|
|
WORKDIR /app |
|
|
@ -19,4 +19,4 @@ COPY fib/static /app/static |
|
|
|
COPY fib/templates /app/templates |
|
|
|
|
|
|
|
# Befehl, der die Anwendung startet |
|
|
|
CMD ["python", "app.py"] |
|
|
|
CMD ["python", "/app/app.py"] |
|
|
|