This repository has been archived by the owner on Sep 9, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set version to 7.1.0 and fix publishing (#385)
- Loading branch information
1 parent
bd5e883
commit 70b05d6
Showing
3 changed files
with
28 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ | |
is intended to be reused in multiple places. | ||
""" | ||
|
||
__version__ = '7.1.1' | ||
__version__ = '7.1.0' |