export MY_IP=$( ip route get 8.8.8.8 | sed -n ' /src/{s/.*src *\([^ ]*\).*/\1/p;q}' )
sudo -E docker build \
--build-arg PKG_NAME=protobuf/v3.9.1 \
--build-arg PKG_CHANNEL=conan/stable \
--build-arg PKG_UPLOAD_NAME=protobuf/v3.9.1@conan/stable \
--build-arg CONAN_EXTRA_REPOS=" conan-local http://$MY_IP :8081/artifactory/api/conan/conan False" \
--build-arg CONAN_EXTRA_REPOS_USER=" user -p password1 -r conan-local admin" \
--build-arg CONAN_INSTALL=" conan install --profile gcc --build missing" \
--build-arg CONAN_CREATE=" conan create --profile gcc --build missing" \
--build-arg CONAN_UPLOAD=" conan upload --all -r=conan-local -c --retry 3 --retry-wait 10 --force" \
--build-arg BUILD_TYPE=Debug \
-f conan_protobuf.Dockerfile --tag conan_protobuf . --no-cache
export PKG_NAME=protobuf/v3.9.1@conan/stable
conan remove $PKG_NAME
conan create . conan/stable -s build_type=Debug --profile gcc --build missing
CONAN_REVISIONS_ENABLED=1 CONAN_VERBOSE_TRACEBACK=1 CONAN_PRINT_RUN_COMMANDS=1 CONAN_LOGGING_LEVEL=10 conan upload $PKG_NAME --all -r=conan-local -c --retry 3 --retry-wait 10 --force
# clean build cache
conan remove " *" --build --force
How to diagnose errors in conanfile (CONAN_PRINT_RUN_COMMANDS)
# NOTE: about `--keep-source` see https://bincrafters.github.io/2018/02/27/Updated-Conan-Package-Flow-1.1/
CONAN_REVISIONS_ENABLED=1 CONAN_VERBOSE_TRACEBACK=1 CONAN_PRINT_RUN_COMMANDS=1 CONAN_LOGGING_LEVEL=10 conan create . conan/stable -s build_type=Debug --profile gcc --build missing --keep-source
# clean build cache
conan remove " *" --build --force