Skip to content

Commit

Permalink
rename reproducible.Dockerfile in the README too
Browse files Browse the repository at this point in the history
  • Loading branch information
spoonincode committed Oct 4, 2023
1 parent 2930e56 commit a51ae8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,11 +104,11 @@ If you are in an Ubuntu docker container, omit `sudo` from all commands because
#### Pinned Reproducible Build
The pinned reproducible build requires Docker. Make sure you are in the root of the `leap` repo and then run
```bash
DOCKER_BUILDKIT=1 docker build -f tools/Dockerfile.reproducible -o . .
DOCKER_BUILDKIT=1 docker build -f tools/reproducible.Dockerfile -o . .
```
This command will take a substantial amount of time because a toolchain is built from scratch. Upon completion, the current directory will contain a built `.deb` and `.tar.gz` (you can change the `-o .` argument to place the output in a different directory). If needing to reduce the number of parallel jobs as warned above, run the command as,
```bash
DOCKER_BUILDKIT=1 docker build --build-arg LEAP_BUILD_JOBS=4 -f tools/Dockerfile.reproducible -o . .
DOCKER_BUILDKIT=1 docker build --build-arg LEAP_BUILD_JOBS=4 -f tools/reproducible.Dockerfile -o . .
```

#### Unpinned Build
Expand Down

0 comments on commit a51ae8c

Please sign in to comment.