Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,15 @@ MAINTAINER Jimmy Mesta <@jimmesta>
RUN apt-get update && apt-get install -y openjdk-7-jdk wget
RUN mkdir Threadfix
COPY Install /Threadfix

# Recommend building your own threadfix.war from https://github.com/denimgroup/threadfix
# Then manually adding to INSTALL/tomcat/webapps/threadfix.war (rename to this name)
# And comment out the next two steps, as they are unlikely to work.
WORKDIR /Threadfix/tomcat/webapps
RUN wget https://storage.googleapis.com/threadfix/threadfix.war

EXPOSE 8443
WORKDIR /Threadfix
RUN chmod +x threadfix.sh
ENTRYPOINT ["./threadfix.sh"]

ENTRYPOINT ["./threadfix.sh","start"]