We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3f28b77 commit 382315bCopy full SHA for 382315b
1 file changed
Dockerfile
@@ -13,4 +13,16 @@ RUN php composer-setup.php --install-dir=/usr/local/bin --filename=composer
13
14
RUN apt-get update && apt-get install -y git zip unzip
15
16
-RUN composer install
+RUN composer install
17
+
18
+##
19
+## Below is temporary until this is converted to a base image
20
21
22
+# Get the sdk repo if it doesn't exist
23
+RUN apt-get update && apt-get install -y git
24
+RUN if [ ! -d "sdk-php" ]; then git clone --depth 1 https://github.com/ProcessMaker/sdk-php.git; fi
25
26
+# Get the last AWS-SDK version
27
+RUN apt-get install zip unzip -y
28
+RUN composer require aws/aws-sdk-php
0 commit comments