Skip to content

Commit

Permalink
Merge pull request #4 from ayushpriya10/master
Browse files Browse the repository at this point in the history
Adding Dockerfile for easier deployment.
  • Loading branch information
Mehtab Zafar committed Jun 12, 2019
2 parents 43a9298 + 126f0b8 commit 5692988
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM python
LABEL MAINTAINER "Ayush Priya"

RUN apt-get update && apt-get install git -y \
&& git clone https://github.com/mzfr/liffy \
&& cd liffy \
&& pip install -r requirements.txt \
&& wget https://raw.githubusercontent.com/rapid7/metasploit-omnibus/master/config/templates/metasploit-framework-wrappers/msfupdate.erb \
&& chmod +x msfupdate.erb \
&& ./msfupdate.erb

WORKDIR /liffy

ENTRYPOINT ["python", "/liffy/liffy.py"]

CMD ["--help"]

0 comments on commit 5692988

Please sign in to comment.