schöne nachricht

This commit is contained in:
2025-04-20 17:27:09 +01:00
parent e829d93787
commit c8a9de2e43
2 changed files with 17 additions and 0 deletions

10
Dockerfile Normal file
View File

@@ -0,0 +1,10 @@
FROM python:3.9-slim-buster
WORKDIR /app
COPY requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY website .
CMD ["python", "app.py"]

7
docker-compose.yml Normal file
View File

@@ -0,0 +1,7 @@
version: "3.9"
services:
web:
build: .
ports:
- "5000:5000"
restart: always