Skip to content

Commit 367a6ce

Browse files
committed
[Chore] Update OCTEZ_VERSION in docs
Problem: `OCTEZ_VERSION` in docs is too outdated. Solution: Update it.
1 parent 67e38c8 commit 367a6ce

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

docker/README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Static binaries building using custom alpine image.
1919
image defined in [Dockerfile](build/Dockerfile). In order to build them you should specify
2020
`OCTEZ_VERSION` env variable and run the script:
2121
```
22-
export OCTEZ_VERSION="v14.1"
22+
export OCTEZ_VERSION="v17.3"
2323
./docker-static-build.sh
2424
```
2525
After that, directory will contain built static binaries.
@@ -32,7 +32,7 @@ one can build native binaries for current architecture or build `aarch64` binari
3232
In order to build only specific binaries, or experimental/dev ones, you should specify
3333
`OCTEZ_EXECUTABLES` env variable:
3434
```
35-
export OCTEZ_VERSION="v14.1"
35+
export OCTEZ_VERSION="v17.3"
3636
export OCTEZ_EXECUTABLES="octez-smart-rollup-wasm-debugger octez-protocol-compiler octez-dal-node"
3737
./docker-static-build.sh
3838
```
@@ -92,7 +92,7 @@ To see all available options, run:
9292
In order to build binary `.deb` packages specify `OCTEZ_VERSION` and
9393
run the following command:
9494
```
95-
export OCTEZ_VERSION="v14.1"
95+
export OCTEZ_VERSION="v17.3"
9696
cd .. && ./docker/package.py --os ubuntu --type binary
9797
```
9898

@@ -101,14 +101,14 @@ It is also possible to specify packages to build with `-p` or `--packages` optio
101101
```
102102
# cd .. && ./docker/package.py -os ubuntu --type binary --packages <tezos-binary-1> <tezos-binary-2>
103103
# Example for baker
104-
export OCTEZ_VERSION="v14.1"
104+
export OCTEZ_VERSION="v17.3"
105105
cd .. && ./docker/package.py --os ubuntu --type binary -p tezos-client tezos-node
106106
```
107107

108108
In order to choose specific ubuntu distribution to build for (see [support policy](../docs/support-policy.md)),
109109
use `-d` or `--distributions` option:
110110
```
111-
export OCTEZ_VERSION="v14.1"
111+
export OCTEZ_VERSION="v17.3"
112112
cd .. && ./docker/package.py --os ubuntu --type binary -d focal jammy -p tezos-client tezos-node
113113
```
114114

@@ -126,7 +126,7 @@ sudo apt install <path to deb file>
126126

127127
In order to build source packages run the following commands:
128128
```
129-
export OCTEZ_VERSION="v14.1"
129+
export OCTEZ_VERSION="v17.3"
130130
cd .. && ./docker/package.py --os ubuntu --type source
131131
# you can also build single source package
132132
cd .. && ./docker/package.py --os ubuntu --type source --packages tezos-client
@@ -145,7 +145,7 @@ the submitter info and signed.
145145

146146
If you want to sign resulted source packages automatically, you can provide signer identity through `--gpg-sign` or `-s` option:
147147
```
148-
export OCTEZ_VERSION="v14.1"
148+
export OCTEZ_VERSION="v17.3"
149149
cd .. && ./docker/package.py --os ubuntu --type source -d focal jammy -p tezos-client -s <signer_info>
150150
```
151151
For example, `signer_info` can be the following: `Roman Melnikov <[email protected]>`
@@ -219,22 +219,22 @@ To see all available options, run:
219219
In order to build binary `.rpm` packages specify `OCTEZ_VERSION` and
220220
run the following command:
221221
```
222-
export OCTEZ_VERSION="v14.1"
222+
export OCTEZ_VERSION="v17.3"
223223
cd .. && ./docker/package.py --os fedora --type binary
224224
```
225225

226226
It is also possible to specify packages to build with `-p` or `--packages` option. In order to do that run the following:
227227
```
228228
# cd .. && ./docker/package.py --os fedora --type binary --packages <tezos-binary-1> <tezos-binary-2>
229229
# Example for baker
230-
export OCTEZ_VERSION="v14.1"
230+
export OCTEZ_VERSION="v17.3"
231231
cd .. && ./docker/package.py --os fedora --type binary -p tezos-client tezos-node
232232
```
233233

234234
In order to build packages for specific Fedora distribution (see [support policy](../docs/support-policy.md)),
235235
use `-d` or `--distributions` option:
236236
```
237-
export OCTEZ_VERSION="v14.1"
237+
export OCTEZ_VERSION="v17.3"
238238
cd .. && ./docker/package.py --os fedora -d 38 --type binary -p tezos-baking
239239
```
240240

@@ -255,15 +255,15 @@ sudo dnf install <path to rpm file>
255255

256256
In order to build source packages run the following commands:
257257
```
258-
export OCTEZ_VERSION="v14.1"
258+
export OCTEZ_VERSION="v17.3"
259259
cd .. && ./docker/package.py --os fedora --type source
260260
# you can also build single source package
261261
cd .. && ./docker/package.py --os fedora --type source -p tezos-client
262262
```
263263

264264
If you want to sign resulted source packages automatically, you can provide signer identity through `--gpg-sign` or `-s` option:
265265
```
266-
export OCTEZ_VERSION="v14.1"
266+
export OCTEZ_VERSION="v17.3"
267267
cd .. && ./docker/package.py --os fedora --type source -p tezos-client -s <signer_info>
268268
```
269269
For example, `signer_info` can be the following: `Roman Melnikov <[email protected]>`

0 commit comments

Comments
 (0)