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.
1 parent 01561b6 commit c40ec96Copy full SHA for c40ec96
Dockerfile
@@ -5,5 +5,7 @@ WORKDIR /myapp
5
ADD Gemfile /myapp/Gemfile
6
ADD Gemfile.lock /myapp/Gemfile.lock
7
RUN bundle install
8
+RUN rails db:setup
9
ADD . /myapp
10
+CMD bundle exec rails s -p 3000 -b '0.0.0.0'
11
sqlmap/Dockerfile
@@ -0,0 +1,4 @@
1
+FROM python:2.7.16-alpine3.9
2
+RUN apk add git
3
+RUN git clone --depth 1 https://github.com/sqlmapproject/sqlmap.git sqlmap-dev
4
+ENTRYPOINT [ "/usr/local/bin/python", "sqlmap-dev/sqlmap.py" ]
0 commit comments