date_diff

Dockerfile
This commit is contained in:
2025-05-18 10:47:40 +02:00
parent 61e8c85bbe
commit 58b4c6e116
2 changed files with 4 additions and 4 deletions

2
date_diff.py Normal file → Executable file
View File

@@ -1,4 +1,4 @@
#! python
#! /usr/bin/python
import sys
from datetime import datetime

View File

@@ -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"]