Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ RUN git -c advice.detachedHead=0 clone --branch ${PYENV_VERSION} --depth 1 https
ENV PIPX_BIN_DIR=/root/.local/bin
ENV PATH=$PIPX_BIN_DIR:$PATH
RUN apt-get update && apt-get install -y pipx \
&& rm -rf /var/lib/apt/lists/* \
&& pipx install poetry uv \
# Preinstall common packages for each version
&& for pyv in $(ls ${PYENV_ROOT}/versions/); do \
Expand Down Expand Up @@ -173,7 +174,8 @@ RUN mkdir /tmp/swiftly \
### RUBY ###

RUN apt-get update && apt-get install -y --no-install-recommends \
ruby-full
ruby-full \
&& rm -rf /var/lib/apt/lists/*

### RUST ###

Expand Down