Files
railsgoat/Dockerfile
T
2016-06-14 22:22:28 -04:00

13 lines
133 B
Docker

FROM rails:onbuild
MAINTAINER owasp
ADD script/start /start
RUN chmod a+x /start
user root
ENV RAILS_ENV development
CMD /start