We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents c18d21d + 9ae6f70 commit bc4334fCopy full SHA for bc4334f
Dockerfile
@@ -1,14 +1,8 @@
1
-FROM debian:10
+FROM debian:latest
2
LABEL MAINTAINER="https://github.com/htr-tech/zphisher"
3
4
WORKDIR zphisher/
5
ADD . /zphisher
6
7
-RUN apt-get update
8
-RUN apt-get install -y curl
9
-RUN apt-get install --no-install-recommends -y php
10
-RUN apt-get install -y unzip
11
-RUN apt-get clean
12
-RUN apt-get install -y wget
13
-
14
-CMD ["./zphisher.sh"]
+RUN apt update && apt full-upgrade -y && apt install -y curl unzip wget && apt install --no-install-recommends -y php && apt clean
+CMD ["./zphisher.sh"]
0 commit comments