summaryrefslogtreecommitdiffstats
path: root/Bombs/cpu/Dockerfile
blob: eb3c6684cd53fc01a7a90db507b712e8d20beaf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
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" ]