zmiana obslugi haseł, docker/podman

This commit is contained in:
Mateusz Gruszczyński
2025-02-26 08:10:56 +01:00
parent e4b33cb0d3
commit 1d41d303f3
5 changed files with 147 additions and 16 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM python:3.13-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --upgrade pip
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "run_waitress.py"]