-
Notifications
You must be signed in to change notification settings - Fork 828
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Build Docker hf3fs-dev image failed #159
Comments
After resolving the aforementioned issue, the following error is reported: Selecting previously unselected package foundationdb-server. |
Please provide your machine information, such as kernel version and machine architecture |
machine is VM: OS:ubuntu20.04.1 uname -a |
I resolved the issue through the following modifications: |
docker build -t hf3fs-dev -f dockerfile/dev.dockerfile .
Step 6/10 : ARG FDB_ARCH_SUFFIX
---> Using cache
---> 40337c0f0904
Step 7/10 : RUN case "${TARGETARCH}" in amd64) FDB_ARCH_SUFFIX="amd64" ;; arm64) FDB_ARCH_SUFFIX="aarch64" ;; *) echo "Unsupported architecture: ${TARGETARCH}"; exit 1 ;; esac && FDB_CLIENT_URL="https://github.com/apple/foundationdb/releases/download/${FDB_VERSION}/foundationdb-clients_${FDB_VERSION}-1_${FDB_ARCH_SUFFIX}.deb" && FDB_SERVER_URL="https://github.com/apple/foundationdb/releases/download/${FDB_VERSION}/foundationdb-server_${FDB_VERSION}-1_${FDB_ARCH_SUFFIX}.deb" && wget -q "${FDB_CLIENT_URL}" && wget -q "${FDB_SERVER_URL}" && dpkg -i foundationdb-clients_${FDB_VERSION}-1_${FDB_ARCH_SUFFIX}.deb && dpkg -i foundationdb-server_${FDB_VERSION}-1_${FDB_ARCH_SUFFIX}.deb && rm foundationdb-clients_${FDB_VERSION}-1_${FDB_ARCH_SUFFIX}.deb foundationdb-server_${FDB_VERSION}-1_${FDB_ARCH_SUFFIX}.deb
---> Running in 2499ede3208c
/bin/bash: line 1: TARGETARCH: unbound variable
The command '/bin/bash -euo pipefail -c case "${TARGETARCH}" in amd64) FDB_ARCH_SUFFIX="amd64" ;; arm64) FDB_ARCH_SUFFIX="aarch64" ;; *) echo "Unsupported architecture: ${TARGETARCH}"; exit 1 ;; esac && FDB_CLIENT_URL="https://github.com/apple/foundationdb/releases/download/${FDB_VERSION}/foundationdb-clients_${FDB_VERSION}-1_${FDB_ARCH_SUFFIX}.deb" && FDB_SERVER_URL="https://github.com/apple/foundationdb/releases/download/${FDB_VERSION}/foundationdb-server_${FDB_VERSION}-1_${FDB_ARCH_SUFFIX}.deb" && wget -q "${FDB_CLIENT_URL}" && wget -q "${FDB_SERVER_URL}" && dpkg -i foundationdb-clients_${FDB_VERSION}-1_${FDB_ARCH_SUFFIX}.deb && dpkg -i foundationdb-server_${FDB_VERSION}-1_${FDB_ARCH_SUFFIX}.deb && rm foundationdb-clients_${FDB_VERSION}-1_${FDB_ARCH_SUFFIX}.deb foundationdb-server_${FDB_VERSION}-1_${FDB_ARCH_SUFFIX}.deb' returned a non-zero code: 1
The text was updated successfully, but these errors were encountered: