File tree 1 file changed +11
-4
lines changed
1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change 19
19
#
20
20
# inv docker.up
21
21
#
22
+ # You also need the "awscli" PyPi package in your local Python environment.
23
+ #
24
+ # pip install awscli
25
+ #
26
+ # Note: The version that used is currently simply the latest. If there are issues in
27
+ # the future, we can consider fetching the 'mc' client from MinIO instead.
28
+ #
22
29
#
23
30
# PRODUCTION ENVIRONMENT
24
31
#
@@ -121,10 +128,10 @@ then
121
128
# Upload the .tar.gz to S3 development environment
122
129
echo " Uploading to dev environment"
123
130
124
- AWS_ENDPOINT_URL=" ${AWS_ENDPOINT_URL:- http:// localhost: 9000} "
125
- AWS_BUILD_TOOLS_BUCKET=" ${AWS_BUILD_TOOLS_BUCKET:- build-tools} "
126
- AWS_ACCESS_KEY_ID=" ${AWS_ACCESS_KEY_ID:- admin} "
127
- AWS_SECRET_ACCESS_KEY=" ${AWS_SECRET_ACCESS_KEY:- password} "
131
+ export AWS_ENDPOINT_URL=" ${AWS_ENDPOINT_URL:- http:// localhost: 9000} "
132
+ export AWS_BUILD_TOOLS_BUCKET=" ${AWS_BUILD_TOOLS_BUCKET:- build-tools} "
133
+ export AWS_ACCESS_KEY_ID=" ${AWS_ACCESS_KEY_ID:- admin} "
134
+ export AWS_SECRET_ACCESS_KEY=" ${AWS_SECRET_ACCESS_KEY:- password} "
128
135
129
136
aws --endpoint-url $AWS_ENDPOINT_URL s3 cp $OS -$TOOL -$VERSION .tar.gz s3://$AWS_BUILD_TOOLS_BUCKET
130
137
You can’t perform that action at this time.
0 commit comments