cipherscan/Dockerfile

24 lines
728 B
Docker
Raw Normal View History

2017-11-07 18:40:34 +01:00
FROM "ubuntu:17.10"
MAINTAINER "Julien Cabillot <dockerimages@cabillot.eu>"
2017-12-21 10:47:56 +01:00
RUN apt-get -qq update && \
2017-12-21 10:49:28 +01:00
apt-get -qq --yes install git-core python bsdmainutils curl python-six && \
2017-12-21 10:47:56 +01:00
git clone https://github.com/jvehent/cipherscan.git && \
/cipherscan/cscan.sh -l && \
apt-get -qq --yes remove --purge git-core && \
apt-get -qq --yes autoremove --purge && \
apt-get -qq --yes clean all && \
rm -rf "/usr/share/doc/*" \
"/var/cache/*" \
"/var/lib/apt/lists/*" \
"/usr/src/*" \
"/var/cache/*" \
"/var/log/"{apt/*,dpkg.log} \
"/var/www/html" \
"/tmp/*"
WORKDIR /cipherscan
ENTRYPOINT ["/cipherscan/cipherscan"]
CMD ["--help"]