From 739be3a73083965da09d7306eef8adfae8449d0e Mon Sep 17 00:00:00 2001 From: Dimitri Fontaine Date: Wed, 17 Apr 2019 14:51:11 +0300 Subject: [PATCH] Fix Dockerfile.ccl Stop installing sbcl in the CCL image, that's not needed, and also make sure we use a git clone of some of the libs rather than the current QL version of them. Fixes #926. --- Dockerfile.ccl | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile.ccl b/Dockerfile.ccl index 29d71fe..9937f16 100644 --- a/Dockerfile.ccl +++ b/Dockerfile.ccl @@ -14,7 +14,6 @@ FROM debian:stable-slim as builder make \ openssl \ patch \ - sbcl \ time \ unzip \ wget \ @@ -30,7 +29,7 @@ FROM debian:stable-slim as builder RUN mkdir -p /opt/src/pgloader/build/bin \ && cd /opt/src/pgloader \ - && make CL=ccl DYNSIZE=256 save + && make CL=ccl DYNSIZE=256 clones save FROM debian:stable-slim