Skip to content

Commit caa809f

Browse files
authored
Remove libopenblas-dev from ansible dependencies (#9632)
libopenblas-dev fails the docker build as it's not available in debian-12
1 parent 49dec2e commit caa809f

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

infra/ansible/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG python_version=3.8
2-
ARG debian_version=bullseye
2+
ARG debian_version=bookworm
33

44
FROM python:${python_version}-${debian_version} AS build
55

infra/ansible/config/apt.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ apt:
2828
- git
2929
- gnupg
3030
- libgomp1
31-
- libopenblas-base
3231
- patch
3332
- vim
3433

infra/tpu-pytorch-releases/README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,14 @@ unset properties of existing triggers.
8383
5. See section [Manually trigger a Cloud Build](#manually-trigger-a-cloud-build)
8484
to manually trigger the created build and produce all the artifacts.
8585
86+
### Build development docker locally for testing
87+
88+
Sample command to build the development docker container locally for testing:
89+
```
90+
cd infra/ansible
91+
docker build -f development.Dockerfile --build-arg=python_version=3.12 --build-arg=ansible_vars='{"xla_git_rev":"master", "pytorch_git_rev":"main", "accelerator":"tpu", "arch": "amd64", "python_version":"3.12"}'
92+
```
93+
8694
8795
### Nightly releases
8896

0 commit comments

Comments
 (0)