From f48baf6b5cac6dc26af0205d1308b62ede133078 Mon Sep 17 00:00:00 2001 From: Ben Du Date: Fri, 28 Nov 2025 23:44:31 -0800 Subject: [PATCH 1/3] remove comments --- Dockerfile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7ee8b14..a3342de 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,7 +7,6 @@ RUN apt-get update -y \ python3 python3-pip python3-venv \ python3-all-dev python3-setuptools build-essential python3-wheel python3-apt \ && curl -LsSf https://astral.sh/uv/install.sh | env UV_INSTALL_DIR="/usr/local/bin" sh \ - #&& pip3 install -U --break-system-packages pip \ && pip3 install --break-system-packages \ pytype ruff pytest ipython \ wajig \ @@ -15,13 +14,4 @@ RUN apt-get update -y \ && ln -svf /usr/bin/pip3 /usr/bin/pip \ && /scripts/sys/purge_cache.sh -# pyenv -#ENV PYENV_ROOT=/opt/pyenv PATH=/opt/pyenv/bin:$PATH -#RUN icon -y pyenv -ic \ -# && pyenv install 3.7.12 \ -# && ln -s /opt/pyenv/versions/3.7.*/bin/python /usr/bin/python3.7 \ -# && /usr/bin/python3.7 -m pip install -U pip \ -# && /scripts/sys/purge_cache.sh \ -# && find /opt/ -type d -name '.git' | xargs rm -rf - COPY scripts/ /scripts/ From 0d88381744bf8aefe928ea5dfee4d61273095335 Mon Sep 17 00:00:00 2001 From: Ben Du Date: Sat, 29 Nov 2025 01:27:31 -0800 Subject: [PATCH 2/3] pull icon-data before running config --- scripts/etc_pre/010-python.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/etc_pre/010-python.sh b/scripts/etc_pre/010-python.sh index fe3757c..a4429c2 100755 --- a/scripts/etc_pre/010-python.sh +++ b/scripts/etc_pre/010-python.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash -su -m $DOCKER_USER -c "icon ipython -c" +su -m $DOCKER_USER -c "icon data && icon ipython -c" From f2a80cf535a3b3599fdb7ee27685ca7246a09e88 Mon Sep 17 00:00:00 2001 From: Ben Chuanlong Du Date: Wed, 10 Dec 2025 18:45:31 -0800 Subject: [PATCH 3/3] Remove 'icon data' command from script --- scripts/etc_pre/010-python.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/etc_pre/010-python.sh b/scripts/etc_pre/010-python.sh index a4429c2..fe3757c 100755 --- a/scripts/etc_pre/010-python.sh +++ b/scripts/etc_pre/010-python.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash -su -m $DOCKER_USER -c "icon data && icon ipython -c" +su -m $DOCKER_USER -c "icon ipython -c"