From a17b9f9725416726a2054d51476a7baade49ffce Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Thu, 23 Jul 2026 16:51:39 +0200 Subject: [PATCH] Debug container --- cloud/Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cloud/Dockerfile b/cloud/Dockerfile index ccc2a9f..8524db0 100644 --- a/cloud/Dockerfile +++ b/cloud/Dockerfile @@ -3,6 +3,9 @@ FROM python:3.11-slim # Set the working directory inside the container WORKDIR /cloud +# DEBUG +RUN apt update && apt install -y dnsutils iputils-ping + # Copy the requirements file and install dependencies COPY cloud/requirements.txt . RUN pip install --no-cache-dir -r requirements.txt