Fix permission in Dockerfile

This commit is contained in:
Johannes M. Scheuermann 2022-07-04 17:18:36 +01:00 committed by Jingyu Zhou
parent 2d9b854a9f
commit b9afde3d4c

View File

@ -91,7 +91,7 @@ COPY website /tmp/website/
# Install FoundationDB Binaries
RUN for file in fdbserver fdbbackup fdbcli fdbmonitor; do \
curl --fail -Ls ${FDB_WEBSITE}/${FDB_VERSION}/$file.x86_64 -o $file; \
chmod u+x $file; \
chmod +x $file; \
mv $file /usr/bin; \
done