File tree 2 files changed +5
-5
lines changed
2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -62,9 +62,6 @@ dockerdeploy: &dockerdeploy
62
62
if [[ -n "$DOCKER_PASS" ]]; then
63
63
docker login -u $DOCKER_USER -p $DOCKER_PASS
64
64
docker push ${CONTAINER_NAME}:${DOCKER_TAG}
65
- echo "Tagging latest image..."
66
- docker tag ${CONTAINER_NAME}:${DOCKER_TAG} ${CONTAINER_NAME}:latest
67
- docker push ${CONTAINER_NAME}:latest
68
65
fi
69
66
70
67
dockerbuild : &dockerbuild
Original file line number Diff line number Diff line change 12
12
# USAGE: docker2singularity.sh ubuntu:14.04
13
13
#
14
14
#
15
- # Copyright (c) 2016-2018 Vanessa Sochat, All Rights Reserved
15
+ # Copyright (c) 2016-2019 Vanessa Sochat, All Rights Reserved
16
16
# Copyright (c) 2017 Singularityware LLC and AUTHORS
17
17
#
18
18
# Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -289,11 +289,14 @@ rm -rf $TMPDIR
289
289
# ###############################################################################
290
290
if [ " ${mount_points} " ] ; then
291
291
echo " (6/10) Adding mount points..."
292
- mkdir -p " ${build_sandbox} /${mount_points} "
292
+ for mount_point in ${mount_points} ; do
293
+ mkdir -p " ${build_sandbox} /${mount_point} "
294
+ done
293
295
else
294
296
echo " (6/10) Skipping mount points..."
295
297
fi
296
298
299
+
297
300
# making sure that any user can read and execute everything in the container
298
301
echo " (7/10) Fixing permissions..."
299
302
You can’t perform that action at this time.
0 commit comments