Docker file in foundationdb/package/docker failed to download the tar bar ball

Hi,
I downloaded the foundationdb6.3.18 package from GitHub and try to use the included dockerfile under package/docker/release. Inside the Dockerfile, it try to download the foundationdb.6.3.18.tar.gz from www.foundationdb.org/downloads/6.3.18/linux but no such file was found. What is the correct website to get the tar ball?
RUN curl $FDB_WEBSITE/downloads/$FDB_VERSION/linux/fdb_$FDB_VERSION.tar.gz | tar zxf - --strip-components=1 && chmod u+x fdbbackup fdbcli fdbdr fdbmonitor fdbrestore fdbserver backup_agent dr_agent && mv fdbbackup fdbcli fdbdr fdbmonitor fdbrestore fdbserver backup_agent dr_agent /usr/bin && rm -r /var/fdb/tmp
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 162 100 162 0 0 341 0 --:–:-- --:–:-- --:–:-- 341

gzip: stdin: not in gzip format
tar: Child returned status 1
tar: Error is not recoverable: exiting now
Error: error building at STEP “RUN curl $FDB_WEBSITE/downloads/$FDB_VERSION/linux/fdb_$FDB_VERSION.tar.gz | tar zxf - --strip-components=1 && chmod u+x fdbbackup fdbcli fdbdr fdbmonitor fdbrestore fdbserver backup_agent dr_agent && mv fdbbackup fdbcli fdbdr fdbmonitor fdbrestore fdbserver backup_agent dr_agent /usr/bin && rm -r /var/fdb/tmp”: error while running runtime: exit status 2

The binaries are now available from GitHub, we made the changes in the Dockerfile for the latest 6.3 version and 7.1 + main. Those are the changes: Refactor Docker setup for new binary location by johscheuer · Pull Request #7415 · apple/foundationdb · GitHub if you back port them Tinto your Dockfile or adjust it accordingly everything should be working.

1 Like