File tree Expand file tree Collapse file tree 3 files changed +11
-9
lines changed Expand file tree Collapse file tree 3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change
1
+ requests == 2.31.0
2
+ urllib3 == 1.26.18
3
+ docker == 6.1.3
4
+ docker-compose @ git+https://github.com/pkoutsovasilis/compose@v1_fix
1
5
async-timeout == 4.0.3
2
6
attrs == 19.3.0
3
7
autopep8 == 1.5.4
@@ -13,8 +17,6 @@ cryptography==41.0.7
13
17
deepdiff == 4.2.0
14
18
Deprecated == 1.2.14
15
19
distro == 1.9.0
16
- docker == 6.0.1
17
- docker-compose == 1.29.2
18
20
docker-pycreds == 0.4.0
19
21
dockerpty == 0.4.1
20
22
docopt == 0.6.2
@@ -58,7 +60,6 @@ pytest-timeout==1.4.2
58
60
python-dotenv == 0.21.1
59
61
PyYAML == 5.3.1
60
62
redis == 4.4.4
61
- requests == 2.31.0
62
63
semver == 2.8.1
63
64
six == 1.15.0
64
65
stomp.py == 4.1.22
@@ -67,7 +68,6 @@ texttable==0.9.1
67
68
toml == 0.10.1
68
69
tomli == 2.0.1
69
70
typing_extensions == 4.9.0
70
- urllib3 == 1.26.18
71
71
wcwidth == 0.2.5
72
72
websocket-client == 0.47.0
73
73
wrapt == 1.16.0
Original file line number Diff line number Diff line change @@ -13,8 +13,6 @@ cryptography==41.0.7
13
13
deepdiff==4.2.0
14
14
Deprecated==1.2.14
15
15
distro==1.9.0
16
- docker==6.0.1
17
- docker-compose==1.29.2
18
16
docker-pycreds==0.4.0
19
17
dockerpty==0.4.1
20
18
docopt==0.6.2
@@ -58,7 +56,6 @@ pytest-timeout==1.4.2
58
56
python-dotenv==0.21.1
59
57
PyYAML==5.3.1
60
58
redis==4.4.4
61
- requests==2.31.0
62
59
semver==2.8.1
63
60
six==1.15.0
64
61
stomp.py==4.1.22
@@ -67,7 +64,6 @@ texttable==0.9.1
67
64
toml==0.10.1
68
65
tomli==2.0.1
69
66
typing_extensions==4.9.0
70
- urllib3==1.26.18
71
67
wcwidth==0.2.5
72
68
websocket-client==0.47.0
73
69
wrapt==1.16.0
Original file line number Diff line number Diff line change 1
1
FROM golang:1.21.8
2
+ COPY --from=docker:26.0.0-alpine3.19 /usr/local/bin/docker /usr/local/bin/
2
3
3
4
RUN \
4
5
apt update \
10
11
python3-venv \
11
12
libaio-dev \
12
13
unzip \
14
+ libssl-dev \
15
+ libffi-dev \
13
16
&& rm -rf /var/lib/apt/lists/*
14
17
15
18
# Use a virtualenv to avoid the PEP668 "externally managed environment" error caused by conflicts
@@ -19,9 +22,12 @@ RUN python3 -m venv $VIRTUAL_ENV
19
22
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
20
23
21
24
RUN pip3 install --upgrade pip==20.1.1
22
- RUN pip3 install --upgrade docker-compose==1.23.2
23
25
RUN pip3 install --upgrade setuptools==47.3.2
24
26
RUN pip3 install --upgrade PyYAML==5.3.1
27
+ RUN pip3 install requests==2.31.0
28
+ RUN pip3 install urllib3==1.26.18
29
+ RUN pip3 install docker==6.1.3
30
+ RUN pip3 install git+https://github.com/pkoutsovasilis/compose@v1_fix
25
31
26
32
# Oracle instant client
27
33
RUN cd /usr/lib \
You can’t perform that action at this time.
0 commit comments