Fix Dockerfile - add flask install

This commit is contained in:
2026-05-19 21:46:36 +01:00
parent 1e199b589c
commit bf6cfe3b8e

View File

@@ -4,6 +4,7 @@ WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install flask
COPY . .