Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Docker Files Changes #5

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 38 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
# FLINT.docker

This repository contains all the dockers required to build a FLINT library on various platforms (currently only Bionic).
This repository contains the Dockerfiles required to build FLINT libraries and implementations on various platforms (though only supporting Bionic at the moment).

Each platform requires the base image, and then the platform build on that base
## FLINT Libraries

To build FLINT Libraries for a platform, one needs to build a base image for that platform, and then build the FLINT on top of it.

Image names take the form:

Expand All @@ -18,19 +20,41 @@ mojaglobal/vscode-baseimage:bionic
mojaglobal/flint:bionic
```


## Bionic flint-baseimage
### Bionic flint-baseimage

A Bionic based base image to build moja global libraries and executables

## Bionic flint
### Bionic flint

A Bionic image of the built moja global libraries and executables

## Bionic vscode-baseimage
### Bionic vscode-baseimage

A Bionic based base image to use in Visual Studio Code remote containers



## FLINT Implementations

To build a FLINT Implementation for a platform, one needs to build a FLINT Library for that platform, and then build FLINT Implementation Modules on top of it.

Image names take the form:

```docker
mojaglobal/[implementation name]:[platform]
```

So...

```docker
mojaglobal/sleek:bionic
```

### SLEEK

A System for Land Based Emissions Estimations in Kenya


## cmake

A make has been provided in each folder to help with the docker builds.
Expand Down Expand Up @@ -83,6 +107,14 @@ TAGNAME=bionic
CPUNUM=8
```

### sleek implementation image

```bash
DOCKER_REPO=mojaglobal
APP_NAME=moja.sleek
CPUNUM=8
```

## Contributors

Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/docs/en/emoji-key)):
Expand Down
Loading