https://github.com/nabla-containers/nabla-base-build
Building of Nabla base Docker images
https://github.com/nabla-containers/nabla-base-build
Last synced: 11 days ago
JSON representation
Building of Nabla base Docker images
- Host: GitHub
- URL: https://github.com/nabla-containers/nabla-base-build
- Owner: nabla-containers
- License: isc
- Created: 2018-06-13T18:38:35.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-26T16:37:50.000Z (about 6 years ago)
- Last Synced: 2024-11-09T22:35:44.426Z (6 months ago)
- Language: Shell
- Size: 116 KB
- Stars: 26
- Watchers: 6
- Forks: 6
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Authors: AUTHORS
Awesome Lists containing this project
- awesome-repositories - nabla-containers/nabla-base-build - Building of Nabla base Docker images (Shell)
README
This repository builds base Docker images for Rumprun-based nabla
containers. So far we provide the following:nginx-base
node-base
python3-base
redis-base
go-base### Building the bases
First fetch the submodules (solo5, rumprun, and rumprun-packages):
```
git submodule update --init --recursive
```Ensure you have the following prerequisites on your system for
building the bases:
```
apt-get install zlib1g-dev libseccomp-dev
```Finally build all of the base images:
```
make
```
or just one:
```
make nginx-base
```### Using the bases
To see how to use these bases in practice for your own applications,
see the
[nabla-containers/nabla-demo-apps](https://github.com/nabla-containers/nabla-demo-apps)
repository.