diff options
author | vasraz <vasyl.razinkov@est.tech> | 2021-08-16 13:45:06 +0100 |
---|---|---|
committer | Vasyl Razinkov <vasyl.razinkov@est.tech> | 2021-08-16 22:59:04 +0000 |
commit | 855a434b4f6555aa43091cdaeef14a33e418458d (patch) | |
tree | e95319a158222fd7f97ffc9cdb016235c9b874fd /asdctool/sdc-cassandra-init | |
parent | 276117aaa383b16a0b62e2666a612e669b8f27c8 (diff) |
Fix broken build
Change-Id: If2bfe79cf3df43e4678fe1282b68753fa198d130
Signed-off-by: Vasyl Razinkov <vasyl.razinkov@est.tech>
Issue-ID: SDC-3671
Diffstat (limited to 'asdctool/sdc-cassandra-init')
-rw-r--r-- | asdctool/sdc-cassandra-init/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/asdctool/sdc-cassandra-init/Dockerfile b/asdctool/sdc-cassandra-init/Dockerfile index e5321004b7..33d8738278 100644 --- a/asdctool/sdc-cassandra-init/Dockerfile +++ b/asdctool/sdc-cassandra-init/Dockerfile @@ -10,7 +10,7 @@ RUN mkdir ~/.cassandra/ && \ echo 'version=3.4.4' >> ~/.cassandra/cqlshrc USER root -RUN apt-get update && apt-get install -y python-pip && \ +RUN apt-get update --allow-releaseinfo-change && apt-get install -y python-pip && \ pip install cqlsh && \ mkdir ~/.cassandra/ && \ echo '[cql]' > ~/.cassandra/cqlshrc && \ |