Initial commit

master
TuDatTr 2019-08-13 18:40:55 +02:00
commit 36cbfbb2bc
3 changed files with 13 additions and 0 deletions

8
Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM chazlever/docker-jail:latest
LABEL maintainer "mos4"
RUN apt-get update && apt-get install -y \
python \
python-pip \
screen \
&& rm -rf /var/list/apt/lists/*

1
README.md Normal file
View File

@ -0,0 +1 @@
Derived from chazlevers docker-jail.

4
update.sh Normal file
View File

@ -0,0 +1,4 @@
sudo docker login;
sudo docker build -t docker-jail .;
sudo docker tag docker-jail:latest mos5/docker-jail:latest;
sudo docker push mos5/docker-jail:latest;