From 6581861e598fc336eb37b7c95a81cb082d248c30 Mon Sep 17 00:00:00 2001 From: Constantine Molchanov Date: Wed, 10 Jun 2026 14:16:49 +0400 Subject: [PATCH] Tests: Dockerfile: Remove Nim installation step covered in the base image. --- tests/Dockerfile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/tests/Dockerfile b/tests/Dockerfile index 44dae02..1908e41 100644 --- a/tests/Dockerfile +++ b/tests/Dockerfile @@ -24,13 +24,6 @@ RUN git clone --depth=1 --branch miniupnpd_2_3_9 \ && install -m 755 miniupnpd /usr/local/sbin/miniupnpd-natpmponly \ && rm -rf /tmp/miniupnp /tmp/stub_rdr.c -# Install Nim -ARG NIM_VERSION=2.2.10 -RUN curl -fsSL "https://nim-lang.org/download/nim-${NIM_VERSION}-linux_x64.tar.xz" \ - | tar -xJ -C /opt && \ - ln -s "/opt/nim-${NIM_VERSION}/bin/nim" /usr/local/bin/nim && \ - ln -s "/opt/nim-${NIM_VERSION}/bin/nimble" /usr/local/bin/nimble - # Install nim deps (cached layer) WORKDIR /app COPY libplum.nimble .