File tree Expand file tree Collapse file tree 3 files changed +35
-0
lines changed Expand file tree Collapse file tree 3 files changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ FROM debian:10
2+ LABEL MAINTAINER="Equinockx moisestapia741@gmail.com"
3+
4+ WORKDIR /home/
5+
6+ COPY . /home/
7+
8+ RUN apt-get update && \
9+ apt-get install -y --no-install-recommends openssh-server && \
10+ apt-get install -y curl && \
11+ apt-get install --no-install-recommends -y php && \
12+ apt-get install -y unzip && \
13+ apt-get clean && \
14+ rm -rf /var/lib/apt/lists/*
Original file line number Diff line number Diff line change 1+ version : ' 3.7'
2+
3+ networks :
4+ internet :
5+ driver : bridge
6+
7+ services :
8+
9+ zphisher :
10+
11+ container_name : zphisher
12+ build : .
13+ image : zphisher:v0.1
14+ command : bash zphisher.sh
15+ stdin_open : true
16+ tty : true
17+ volumes :
18+ - $PWD/websites:/home/websites
19+ networks :
20+ - internet
21+ restart : always
You can’t perform that action at this time.
0 commit comments