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