blob: aeb30327d0bf6fd0586feb368ab4d161456a5ad4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
|
About
=====
This is Hyperbola Docker is base image build setup that employs
the bootstrap tarball distributed by distro authors.
It's meant to provide an easy to use solution for building
Hyperbola Docker images.
Usage
======
- `git clone` this repository.
- `cd` to a directory where you have cloned it.
- Generate bootstrap image with [hyperbola-bootstrap](https://git.sr.ht/~heckyel/hyperbola-bootstrap)
- Converter hyperbola-bootstrap to bootstrap image valid for docker
```console
$ ./tar_fix.py --input=hyperbola-bootstrap.tar.gz --output=bootstrap.tar.gz
```
- Make sure you have my `Dockerfile`, `.dockerignore` and the `bootstrap.tar.gz` in one directory.
- Build the image with a command like:
```console
$ docker build --tag hyperbola:0.4 -f Dockerfile-Hyperbola-v04 .
```
or for Hyperbola Milky Way v0.3
```console
$ docker build --tag hyperbola:0.3 -f Dockerfile-Hyperbola-v03 .
```
License
=======
This work is licensed under the [GNU GPLv3+](LICENSE)
|