From 68dd4382d6529ad5d5a9acadcd61fba6e87f3263 Mon Sep 17 00:00:00 2001 From: ameniboukattaya Date: Tue, 19 May 2026 22:20:39 +0100 Subject: [PATCH] Fix Dockerfile - add flask install --- platform/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/platform/Dockerfile b/platform/Dockerfile index e770c55..3c46d19 100644 --- a/platform/Dockerfile +++ b/platform/Dockerfile @@ -6,6 +6,9 @@ COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt RUN pip install flask +# Add SSH client +RUN apt-get update && apt-get install -y openssh-client && rm -rf /var/lib/apt/lists/* + COPY . . EXPOSE 8000