Skip to content

Commit a4519cc

Browse files
committed
Improve building instructions.
1 parent 1805242 commit a4519cc

File tree

1 file changed

+17
-3
lines changed

1 file changed

+17
-3
lines changed

README.md

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,23 @@ JetBrains Mono is developed [on GitHub](https://github.com/JetBrains/JetBrainsMo
1919

2020
## Building
2121

22-
- Install Docker.
23-
- Install PowerShell 5.1 or later.
24-
- Run the `build.ps1` script.
22+
A working `docker` command is required.
23+
24+
If you have PowerShell 5.1 or later, just run the `build.ps1` script.
25+
This should work on all major platforms.
26+
27+
Alternatively, you can run the containerized build directly. In `sh`, `bash`,
28+
`zsh`, etc., the command is:
29+
30+
```sh
31+
docker run -t --rm -e VERSION=2.304 -v "$PWD:/src" python:alpine /src/build.sh
32+
```
33+
34+
In PowerShell, the command is:
35+
36+
```sh
37+
docker run -t --rm -e VERSION=2.304 -v ${PWD}:/src python:alpine /src/build.sh
38+
```
2539

2640
## License
2741

0 commit comments

Comments
 (0)