https://github.com/arhea/docker-python-fips
https://github.com/arhea/docker-python-fips
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/arhea/docker-python-fips
- Owner: arhea
- Created: 2019-11-27T03:34:24.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-27T15:03:43.000Z (over 6 years ago)
- Last Synced: 2025-08-09T23:51:19.445Z (10 months ago)
- Language: Dockerfile
- Size: 7.81 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python and OpenSSL with FIPS

This is an example of how to build OpenSSL with the FIPS module enabled. That latest versions of OpenSSL and the FIPS module can be found on the [OpenSSL website](https://www.openssl.org/source/).
## Usage
This example is wrapped in a Docker container running Ubuntu 16.04. To build the container run the following command:
```bash
make build # will build all of the images
make build-27 # will build python-fips:2.7
make build-37 # will build python-fips:3.7
make build-38 # will build python-fips:3.8
```
Then to run the container:
```bash
docker run -it --rm python-fips:3.8 bash
```
To trigger the builds in CodeBuild:
```bash
make trigger
```