From 8ffd2cc7ac8e409d8b48e2b892f66948395d2188 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 28 Jul 2023 14:39:34 +0700 Subject: [PATCH] better debug --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 5e43826..cf81148 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,12 @@ FROM python:3.11.3-slim-bullseye ARG INSTALL_DEBUG ENV PYTHONUNBUFFERED 1 +ENV PATH=/root/.local/bin:$PATH # install debug tools for testing environment RUN if [ "$INSTALL_DEBUG" ] ; then \ apt-get -y update && apt-get -y install --no-install-recommends \ - vim htop bmon net-tools iputils-ping procps \ + vim htop bmon net-tools iputils-ping procps curl \ && pip install --user ipython \ ; fi