File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -62,9 +62,6 @@ dockerdeploy: &dockerdeploy
6262 if [[ -n "$DOCKER_PASS" ]]; then
6363 docker login -u $DOCKER_USER -p $DOCKER_PASS
6464 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
6865 fi
6966
7067dockerbuild : &dockerbuild
Original file line number Diff line number Diff line change 1212# USAGE: docker2singularity.sh ubuntu:14.04
1313#
1414#
15- # Copyright (c) 2016-2018 Vanessa Sochat, All Rights Reserved
15+ # Copyright (c) 2016-2019 Vanessa Sochat, All Rights Reserved
1616# Copyright (c) 2017 Singularityware LLC and AUTHORS
1717#
1818# Permission is hereby granted, free of charge, to any person obtaining a copy
@@ -289,11 +289,14 @@ rm -rf $TMPDIR
289289# ###############################################################################
290290if [ " ${mount_points} " ] ; then
291291 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
293295else
294296 echo " (6/10) Skipping mount points..."
295297fi
296298
299+
297300# making sure that any user can read and execute everything in the container
298301echo " (7/10) Fixing permissions..."
299302
You can’t perform that action at this time.
0 commit comments