From 02968098648068d4ed5e353ae559c63e0ed9b895 Mon Sep 17 00:00:00 2001 From: sascha Date: Wed, 22 Apr 2026 18:27:56 +0200 Subject: [PATCH] feat: VM lifecycle, TTS, inventory endpoints --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index 6082160..74eabb2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,5 @@ FROM python:3.13-slim +RUN apt-get update && apt-get install -y --no-install-recommends openssh-client && rm -rf /var/lib/apt/lists/* WORKDIR /app COPY requirements.txt . RUN pip install --no-cache-dir -r requirements.txt