1
0
mirror of https://github.com/openshift/installer.git synced 2026-02-05 06:46:36 +01:00

README: add instructions to build using Docker

This commit is contained in:
Lucas Serven
2018-03-14 17:33:45 +01:00
parent 3b7ef0d998
commit 6fdf8baace
2 changed files with 8 additions and 2 deletions

1
.gitignore vendored
View File

@@ -22,3 +22,4 @@ bazel-out
bazel-genfiles
bazel-testlogs
bazel-tectonic-installer
.cache

View File

@@ -41,10 +41,15 @@ These instructions can be used for the official stable platforms listed above, a
bazel build tarball
```
2. Unzip the tarball
*Note*: the project can optionally be built without installing Bazel, provided Docker is installed:
```shell
docker run --rm -v $PWD:$PWD -w $PWD quay.io/coreos/tectonic-builder:bazel-v0.3 bazel --output_base=.cache build tarball
```
2. Extract the tarball
```shell
cd bazel-bin
tar -zxvf tectonic.tar.gz
tar -zxf tectonic.tar.gz
cd tectonic
```