We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d31b9e commit e17c5c7Copy full SHA for e17c5c7
Dockerfile
@@ -10,6 +10,19 @@ RUN apt-get update \
10
&& apt-get clean \
11
&& rm -rf /var/lib/apt/lists/*
12
13
+# ---------------------------------------------------------
14
+# Install Nim 2.2.4
15
16
+ENV NIM_VERSION=2.2.4
17
+ENV PATH=/root/.nimble/bin:$PATH
18
+
19
+RUN curl https://nim-lang.org/choosenim/init.sh -sSf -o init.sh && \
20
+ bash init.sh -y && \
21
+ rm init.sh && \
22
+ choosenim $NIM_VERSION && \
23
+ nim --version
24
25
26
ARG build_tags='gowaku_no_rln'
27
ARG build_flags=''
28
ARG build_target='cmd'
0 commit comments