summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Bombs/cpu/Dockerfile5
-rw-r--r--Bombs/mem/Dockerfile5
-rw-r--r--OS/Dockerfile3
3 files changed, 10 insertions, 3 deletions
diff --git a/Bombs/cpu/Dockerfile b/Bombs/cpu/Dockerfile
index f289832..eb3c668 100644
--- a/Bombs/cpu/Dockerfile
+++ b/Bombs/cpu/Dockerfile
@@ -1,8 +1,11 @@
-FROM startx/openshift-centos:latest
+FROM centos/s2i-core-centos7:latest
MAINTAINER Christophe LARUE <dev@startx.fr>
COPY sx.sh /bin/sx
COPY bomb.sh /bin/bomb
RUN chmod 775 /bin/sx /bin/bomb
+RUN useradd startx && echo "startx" | passwd --stdin startx
+USER startx
+
CMD [ "/bin/sx" ]
diff --git a/Bombs/mem/Dockerfile b/Bombs/mem/Dockerfile
index f289832..eb3c668 100644
--- a/Bombs/mem/Dockerfile
+++ b/Bombs/mem/Dockerfile
@@ -1,8 +1,11 @@
-FROM startx/openshift-centos:latest
+FROM centos/s2i-core-centos7:latest
MAINTAINER Christophe LARUE <dev@startx.fr>
COPY sx.sh /bin/sx
COPY bomb.sh /bin/bomb
RUN chmod 775 /bin/sx /bin/bomb
+RUN useradd startx && echo "startx" | passwd --stdin startx
+USER startx
+
CMD [ "/bin/sx" ]
diff --git a/OS/Dockerfile b/OS/Dockerfile
index f04434e..1237603 100644
--- a/OS/Dockerfile
+++ b/OS/Dockerfile
@@ -3,7 +3,8 @@ MAINTAINER Christophe LARUE <dev@startx.fr>
COPY sx.sh /bin/sx
RUN chmod 775 /bin/sx
-RUN useradd startx && echo "startx" | passwd --stdin startx && usermod -aG wheel startx
+RUN useradd startx && echo "startx" | passwd --stdin startx
USER startx
+
CMD [ "/bin/sx" ]