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.
- Host: GitHub
- URL: https://github.com/williamboman/thelounge-docker-from-source
- Owner: williamboman
- Created: 2018-07-08T21:48:28.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-08-12T14:43:15.000Z (over 3 years ago)
- Last Synced: 2025-02-09T05:35:23.663Z (11 months ago)
- Language: Dockerfile
- Size: 3.91 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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.