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.
This commit is contained in:
Dimitri Fontaine 2019-04-17 14:51:11 +03:00
parent 4b9cbcbce3
commit 739be3a730

View File

@ -14,7 +14,6 @@ FROM debian:stable-slim as builder
make \ make \
openssl \ openssl \
patch \ patch \
sbcl \
time \ time \
unzip \ unzip \
wget \ wget \
@ -30,7 +29,7 @@ FROM debian:stable-slim as builder
RUN mkdir -p /opt/src/pgloader/build/bin \ RUN mkdir -p /opt/src/pgloader/build/bin \
&& cd /opt/src/pgloader \ && cd /opt/src/pgloader \
&& make CL=ccl DYNSIZE=256 save && make CL=ccl DYNSIZE=256 clones save
FROM debian:stable-slim FROM debian:stable-slim