Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docker/py-ews/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

FROM demisto/python3-deb:3.12.12.5919128

# Basic linux utilities
Expand All @@ -10,6 +9,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
RUN apt-get update && apt-get -y --no-install-recommends upgrade \
&& rm -rf /var/lib/apt/lists/*

RUN sed -i 's/SECLEVEL=2/SECLEVEL=0/g' /etc/ssl/openssl.cnf

COPY Pipfile.lock .
COPY Pipfile .

Expand Down
4 changes: 2 additions & 2 deletions docker/py-ews/Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ asn1crypto = "*"
cached-property = "*"
certifi = "*"
cffi = "*"
cryptography = "*"
cryptography = ">=46.0.7"
defusedxml = "*"
dnspython = "*"
enum34 = "*"
Expand All @@ -33,7 +33,7 @@ requests-kerberos = "*"
requests-ntlm = "==1.1.0" # lock because of https://github.com/requests/requests-ntlm/issues/136
six = "*"
tzlocal = "*"
urllib3 = "<2"
urllib3 = ">=2.6.3"

[requires]
python_version = "3.12"
Loading
Loading