Fix Dockerfile - add flask install

This commit is contained in:
2026-05-19 22:20:39 +01:00
parent c162db4374
commit 68dd4382d6

View File

@@ -6,6 +6,9 @@ COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
RUN pip install flask RUN pip install flask
# Add SSH client
RUN apt-get update && apt-get install -y openssh-client && rm -rf /var/lib/apt/lists/*
COPY . . COPY . .
EXPOSE 8000 EXPOSE 8000