Update Dockerfile

This commit is contained in:
2025-09-10 08:46:10 +02:00
parent 37f8843d8b
commit a436981b8e

View File

@@ -15,6 +15,7 @@ RUN apt-get update && apt-get install -y \
unzip \ unzip \
iputils-ping \ iputils-ping \
sudo \ sudo \
ncurses-term \
procps \ procps \
ripgrep \ ripgrep \
fzf \ fzf \
@@ -26,6 +27,7 @@ RUN apt-get update && apt-get install -y \
&& rm -rf /var/lib/apt/lists/* \ && rm -rf /var/lib/apt/lists/* \
&& ln -s /usr/bin/python3 /usr/bin/python && ln -s /usr/bin/python3 /usr/bin/python
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
RUN curl -sS https://starship.rs/install.sh -o /tmp/install_starship.sh && \ RUN curl -sS https://starship.rs/install.sh -o /tmp/install_starship.sh && \
chmod +x /tmp/install_starship.sh && \ chmod +x /tmp/install_starship.sh && \
/tmp/install_starship.sh --yes && \ /tmp/install_starship.sh --yes && \