File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -17,7 +17,6 @@ ARG PROXYPY_PKG_PATH
17
17
18
18
COPY README.md /
19
19
COPY $PROXYPY_PKG_PATH /
20
- COPY requirements-tunnel.txt /
21
20
22
21
RUN pip install --upgrade pip && \
23
22
pip install \
@@ -26,8 +25,8 @@ RUN pip install --upgrade pip && \
26
25
proxy.py && \
27
26
rm *.whl && \
28
27
pip install \
29
- -r requirements-tunnel.txt && \
30
- rm requirements-tunnel.txt
28
+ paramiko==3.4.0 \
29
+ cryptography==39.0.1
31
30
32
31
# Use `--build-arg SKIP_OPENSSL=1` to disable openssl installation
33
32
RUN if [[ -z "$SKIP_OPENSSL" ]]; then apk update && apk add openssl; fi
Original file line number Diff line number Diff line change @@ -3,3 +3,4 @@ paramiko==3.4.0; python_version >= '3.11'
3
3
types-paramiko==2.11.3; python_version < '3.11'
4
4
types-paramiko==3.4.0.20240311; python_version >= '3.11'
5
5
cryptography==36.0.2; python_version <= '3.6'
6
+ cryptography==39.0.1; python_version > '3.6'
You can’t perform that action at this time.
0 commit comments