Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
## Type of change - [x] Bug fix - [ ] New feature development - [ ] Tech debt (refactoring, code cleanup, dependency upgrades, etc) - [ ] Build/deploy pipeline (DevOps) - [ ] Other ## Objective Fix missing shared object libraries error: ```bash docker run --rm -it --platform linux/amd64 $ACR_URL/bws:main --help rosetta error: failed to open elf at /lib64/ld-linux-x86-64.so.2 ``` ## Code changes - **crates/bws/Dockerfile:** x86_64 Linux stores some shared object libraries in a `/lib64` directory. We were missing `/lib64/ld-linux-x86-64.so.2`. This should handle dependencies for both arches. Also moved the binary to `/bin` to allow for `--entrypoint=bws` overriding, without having to specify the full path to the bin. ## Before you submit - Please add **unit tests** where it makes sense to do so
- Loading branch information