Skip to content

Commit f7bb050

Browse files
authored
fixing 2.6 (#53)
* fixing 2.6 Signed-off-by: Vanessa Sochat <[email protected]> * typo Signed-off-by: Vanessa Sochat <[email protected]>
1 parent cbfe060 commit f7bb050

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.circleci/config.yml

-3
Original file line numberDiff line numberDiff 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
7067
dockerbuild: &dockerbuild

docker2singularity.sh

+5-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
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
################################################################################
290290
if [ "${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
293295
else
294296
echo "(6/10) Skipping mount points..."
295297
fi
296298

299+
297300
# making sure that any user can read and execute everything in the container
298301
echo "(7/10) Fixing permissions..."
299302

0 commit comments

Comments
 (0)