https://github.com/neverpanic/mod_wsgi_docker_build
A docker container that builds Debian Jessie versions of a specified libapache2-mod-wsgi version
https://github.com/neverpanic/mod_wsgi_docker_build
Last synced: 3 months ago
JSON representation
A docker container that builds Debian Jessie versions of a specified libapache2-mod-wsgi version
- Host: GitHub
- URL: https://github.com/neverpanic/mod_wsgi_docker_build
- Owner: neverpanic
- Created: 2016-12-22T17:51:50.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-22T17:53:18.000Z (about 9 years ago)
- Last Synced: 2025-02-14T18:57:42.633Z (12 months ago)
- Language: Shell
- Size: 1000 Bytes
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker Container to build libapache2-mod-wsgi
This docker container builds a copy of libapache2-mod-wsgi from a specified
upstream repository of your choice for Debian Jessie.
## Building the Container
To build the container, run
```
docker build --tag "mod-wsgi-build:$(date +%Y-%m-%d)" .
```
## Running the Container
To run the container and build a copy of libapache2-mod-wsgi, run
```
docker run -it --rm "mod-wsgi-build:$build_tag"
```
where `$build_tag` is the version of the container you want to use. You can
optionally pass two arguments, the URL to a git repository to use and the tag
to build in this git repository.
The default source is [Debian's packaging](https://anonscm.debian.org/cgit/python-modules/packages/mod-wsgi.git/).