An open API service indexing awesome lists of open source software.

https://github.com/williamboman/thelounge-docker-from-source

Build The Lounge docker images directly from source with a customizable build configuration.
https://github.com/williamboman/thelounge-docker-from-source

Last synced: 10 months ago
JSON representation

Build The Lounge docker images directly from source with a customizable build configuration.

Awesome Lists containing this project

README

          

# thelounge-docker-from-source

Dockerfile that facilitates building images directly from source.

## Example usage

### Build an image containing pull requests

```sh
$ docker build -t thelounge:custom --build-arg PULL_REQUESTS=2278,2301,2477 .
```

### Build an image against a specific branch/tag/git revision

```sh
$ docker build -t thelounge:custom --build-arg GIT_REVISION=xpaws-new-awesome-feature-branch .
```

> You can of course combine the build args mentioned above to your heart's content.