From ccfe01b24752bab0982672c70b44cfd143cea2c6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B1=A4=E6=96=87=E6=9D=B0?= Date: Fri, 9 Aug 2024 10:44:15 +0800 Subject: [PATCH] fix pip install error ERROR: Command errored out with exit status 1: /System/Library/Frameworks/Python.framework/Versions/2.7/Resources/Python.app/Contents/MacOS/Python /Library/Python/2.7/site-packages/pip/_vendor/pep517/_in_process.py get_requires_for_build_wheel /var/folders/v1/h87p197d1r37m5vbkx2gj1980000gn/T/tmpARMnUi Check the logs for full command output. --- dynamodblocal-init/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dynamodblocal-init/Dockerfile b/dynamodblocal-init/Dockerfile index 0b242f5a..745f0f8a 100644 --- a/dynamodblocal-init/Dockerfile +++ b/dynamodblocal-init/Dockerfile @@ -1,5 +1,5 @@ FROM python:2.7.16-alpine3.9 -RUN pip install awscli --upgrade +RUN pip install awscli --upgrade --no-build-isolation COPY create-dynamodb-tables.sh . COPY ftgo-order-history.json . COPY wait-for-dynamodblocal.sh .