updating dockerfile to use owasp repo

This commit is contained in:
Mike McCabe
2016-06-14 22:22:28 -04:00
parent a5e8b205fb
commit 46422e72e2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
FROM rails:onbuild
MAINTAINER mccabe615
MAINTAINER owasp
ADD script/start /start
Vendored
+1 -1
View File
@@ -3,7 +3,7 @@ ENV['VAGRANT_DEFAULT_PROVIDER'] ||= 'docker'
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "railsgoat" do |rg|
rg.vm.provider "docker" do |d|
d.image = "mccabe615/railsgoat"
d.image = "owasp/railsgoat"
d.name = "railsgoat"
d.ports = ["3000:3000"]
d.vagrant_vagrantfile = "./Vagrantfile.proxy"