Fix Docker builds (bench 5739439)

This commit is contained in:
2026-05-11 19:01:09 +02:00
parent dbf8fcc410
commit 6d61b7dbf4

View File

@@ -6,11 +6,11 @@ ENV DEBIAN_FRONTEND=noninteractive
# Install dependencies
RUN apt-get update && \
apt-get install -y curl git clang llvm lld build-essential libssl-dev wget && \
apt-get install -y curl git clang llvm lld build-essential libssl-dev zlib1g-dev wget && \
rm -rf /var/lib/apt/lists/*
# Install Nim using the official installer
RUN curl https://nim-lang.org/choosenim/init.sh -sSf | sh -s -- -y && \
RUN curl https://nim-lang.org/choosenim/init.sh -sSf | CHOOSENIM_CHOOSE_VERSION=2.2.6 sh -s -- -y && \
ln -s ~/.nimble/bin/nim /usr/local/bin/nim && \
ln -s ~/.nimble/bin/nimble /usr/local/bin/nimble