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