We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c9c9a44 commit 83a41ecCopy full SHA for 83a41ec
1 file changed
base/publish-all.sh
@@ -3,10 +3,15 @@
3
RUNTIMES="nodejs4.3 nodejs6.10 nodejs8.10 python2.7 python3.6 java8 go1.x dotnetcore2.0 dotnetcore2.1"
4
5
docker push lambci/lambda-base
6
-docker push lambci/lambda-base:build
7
8
for RUNTIME in $RUNTIMES; do
9
echo $RUNTIME
10
docker push lambci/lambda:${RUNTIME}
+done
11
+
12
+docker push lambci/lambda-base:build
13
14
+for RUNTIME in $RUNTIMES; do
15
+ echo build-${RUNTIME}
16
docker push lambci/lambda:build-${RUNTIME}
17
done
0 commit comments