Skip to content

Commit e668dd6

Browse files
committed
Include requirements-tunnel.txt within docker image to let users try tunneling using docker images
1 parent 641c77c commit e668dd6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,17 @@ ARG PROXYPY_PKG_PATH
1717

1818
COPY README.md /
1919
COPY $PROXYPY_PKG_PATH /
20+
COPY requirements-tunnel.txt /
2021

2122
RUN pip install --upgrade pip && \
2223
pip install \
2324
--no-index \
2425
--find-links file:/// \
2526
proxy.py && \
26-
rm *.whl
27+
rm *.whl && \
28+
pip install \
29+
-r requirements-tunnel.txt && \
30+
rm requirements-tunnel.txt
2731

2832
# Use `--build-arg SKIP_OPENSSL=1` to disable openssl installation
2933
RUN if [[ -z "$SKIP_OPENSSL" ]]; then apk update && apk add openssl; fi

0 commit comments

Comments
 (0)