Skip to content

Commit 0c88c2e

Browse files
committed
fix: fixes build on arm again...
1 parent f33fa23 commit 0c88c2e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile.node-aws

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,9 @@ RUN wget $(wget https://api.github.com/repos/aws/aws-cli/tags\?per_page\=1 -qO-
1919

2020
RUN python -m pip config set global.break-system-packages true
2121
RUN sed -i '/self._build_aws_completer()/d' backends/build_system/exe.py
22-
RUN ./configure --with-download-deps --with-install-type=portable-exe --prefix=/opt/aws-cli
22+
RUN pip install -r requirements.txt
23+
RUN pip install --prefer-binary 'docutils>=0.10,<0.20' 'cryptography>=40.0.0,<43.0.2' 'ruamel.yaml>=0.15.0,<=0.17.21' 'prompt-toolkit>=3.0.24,<3.0.39' 'distro>=1.5.0,<1.9.0' awscrt==0.23.4 'python-dateutil>=2.1,<=2.9.0' 'jmespath>=0.7.1,<1.1.0' 'urllib3>=1.25.4,<1.27' 'zipp<3.21.0' 'importlib_metadata>=7.0,<=7.1.0'
24+
RUN ./configure --with-install-type=portable-exe --prefix=/opt/aws-cli
2325
RUN make
2426
RUN make install
2527

0 commit comments

Comments
 (0)