diff --git a/CHANGELOG.md b/CHANGELOG.md index 323fed8d..37f91662 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,7 +6,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## Unreleased -## [7.1.1] - 2021-12-21 +## [7.1.0] - 2021-12-22 ### Added - `Init` command is now strict to run in one of three modes described in `SslVerificationMode` enum @@ -116,8 +116,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ### Added - The first tagged version. -[Unreleased]: https://github.com/conjurinc/conjur-api-python3/compare/v7.1.1...HEAD -[7.1.1]: https://github.com/conjurinc/conjur-api-python3/compare/v7.0.1...v7.1.1 +[Unreleased]: https://github.com/conjurinc/conjur-api-python3/compare/v7.1.0...HEAD +[7.1.0]: https://github.com/conjurinc/conjur-api-python3/compare/v7.0.1...v7.1.0 [7.0.1]: https://github.com/conjurinc/conjur-api-python3/compare/v0.1.1...v7.0.1 [0.1.1]: https://github.com/conjurinc/conjur-api-python3/compare/v0.1.0...v0.1.1 [0.1.0]: https://github.com/conjurinc/conjur-api-python3/compare/v0.0.5...v0.1.0 diff --git a/Dockerfile.publish b/Dockerfile.publish new file mode 100644 index 00000000..646c37f5 --- /dev/null +++ b/Dockerfile.publish @@ -0,0 +1,24 @@ +FROM ubuntu:21.10 +ENV INSTALL_DIR=/opt/conjur-api-python3 +ENV DEBIAN_FRONTEND noninteractive +RUN apt-get update && \ + apt-get install -y bash \ + binutils \ + build-essential \ + curl \ + git \ + jq \ + libffi-dev \ + libssl-dev \ + python3 \ + python3-dev \ + python3-pip \ + zlib1g-dev + +RUN mkdir -p $INSTALL_DIR +WORKDIR $INSTALL_DIR + +COPY ./requirements.txt $INSTALL_DIR/ +RUN pip3 install -r requirements.txt + +COPY . $INSTALL_DIR diff --git a/conjur/version.py b/conjur/version.py index df22aad9..73c6d94f 100644 --- a/conjur/version.py +++ b/conjur/version.py @@ -7,4 +7,4 @@ is intended to be reused in multiple places. """ -__version__ = '7.1.1' +__version__ = '7.1.0'