summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorAlexey Neyman <stilor@att.net>2018-09-27 21:43:04 (GMT)
committerGitHub <noreply@github.com>2018-09-27 21:43:04 (GMT)
commit5f18c3ed4e3af50f18985def9d7d1f640fd9577f (patch)
treea3cbbcb1be68012b2ae97147446c8d58178fdb28 /testing
parentf7c2952419bd8aae95169ea1e95f6e327b28d62b (diff)
parent2acab2f06197ab34243fc415020ead54d4a9e505 (diff)
Merge pull request #1036 from stilor/small-fixes
Small fixes
Diffstat (limited to 'testing')
-rw-r--r--testing/docker/archlinux/Dockerfile2
-rwxr-xr-xtesting/docker/dmgr.sh2
-rw-r--r--testing/docker/gentoo-amd64/Dockerfile2
3 files changed, 3 insertions, 3 deletions
diff --git a/testing/docker/archlinux/Dockerfile b/testing/docker/archlinux/Dockerfile
index 4c90925..2ad9d64 100644
--- a/testing/docker/archlinux/Dockerfile
+++ b/testing/docker/archlinux/Dockerfile
@@ -1,3 +1,3 @@
-FROM hoverbear/archlinux
+FROM base/archlinux:latest
RUN pacman -Syu --noconfirm
RUN pacman -S --noconfirm base-devel git help2man python unzip
diff --git a/testing/docker/dmgr.sh b/testing/docker/dmgr.sh
index 0824784..b6a4294 100755
--- a/testing/docker/dmgr.sh
+++ b/testing/docker/dmgr.sh
@@ -109,7 +109,7 @@ action_clean()
msg "Cleaning up after ${cntr}"
if [ -d build-${cntr} ]; then
- chmod -R +w build-${cntr}
+ chmod -R a+w build-${cntr}
rm -rf build-${cntr}
fi
}
diff --git a/testing/docker/gentoo-amd64/Dockerfile b/testing/docker/gentoo-amd64/Dockerfile
index 6500564..455e315 100644
--- a/testing/docker/gentoo-amd64/Dockerfile
+++ b/testing/docker/gentoo-amd64/Dockerfile
@@ -1,4 +1,4 @@
FROM gentoo/stage3-amd64-hardened
RUN wget -O /sbin/dumb-init https://github.com/Yelp/dumb-init/releases/download/v1.2.1/dumb-init_1.2.1_amd64
-RUN chmod +x /sbin/dumb-init
+RUN chmod a+x /sbin/dumb-init
ENTRYPOINT [ "/sbin/dumb-init", "--" ]