Skip to content

Commit 9b56e6c

Browse files
committed
Make SBCL_VERSION getting used actually
Signed-off-by: Harald Judt <[email protected]>
1 parent fe6d904 commit 9b56e6c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

1.0/Dockerfile

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ RUN curl -O "https://libssh2.org/download/libssh2-${LIBSSH2_VERSION}.tar.bz2" &&
6161
mkdir -p /opt/app-root/.ssh && \
6262
dnf remove -y openssl-devel && ls -la /opt/app-root
6363

64-
RUN curl -L -O "https://downloads.sourceforge.net/project/sbcl/sbcl/2.3.4/sbcl-2.3.4-x86-64-linux-binary.tar.bz2" && \
64+
RUN curl -L -O "https://downloads.sourceforge.net/project/sbcl/sbcl/${SBCL_VERSION}/sbcl-${SBCL_VERSION}-x86-64-linux-binary.tar.bz2" && \
6565
curl -L -O https://beta.quicklisp.org/quicklisp.lisp && \
66-
tar -xvf sbcl-2.3.4-x86-64-linux-binary.tar.bz2 && \
67-
cd sbcl-2.3.4-x86-64-linux && \
66+
tar -xvf sbcl-${SBCL_VERSION}-x86-64-linux-binary.tar.bz2 && \
67+
cd sbcl-${SBCL_VERSION}-x86-64-linux && \
6868
./install.sh && \
6969
cd .. && \
70-
rm -rf sbcl-2.3.4-x86-64-linux-binary.tar.bz2 \
71-
sbcl-2.3.4-x86-64-linux && \
70+
rm -rf sbcl-${SBCL_VERSION}-x86-64-linux-binary.tar.bz2 \
71+
sbcl-${SBCL_VERSION}-x86-64-linux && \
7272
git clone --depth 1 https://github.com/joaotavora/sly-quicklisp.git && \
7373
mv sly-quicklisp common-lisp && \
7474
sbcl --non-interactive --disable-debugger --load install.lisp

0 commit comments

Comments
 (0)