Skip to content

Commit

Permalink
Patching Dockerfile
Browse files Browse the repository at this point in the history
Depending on the HV, Docker version and underlying OS something prevents the args specified in CMD to be applied.

Hitting this on MacOS Catalina

This is a simple fix and in most cases this image will just be running with the defaults
  • Loading branch information
Rick Rackow authored Mar 11, 2020
1 parent bcc02e9 commit e773320
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ RUN git clone --depth=1 https://github.com/BuffaloWill/oxml_xxe.git /oxml_xxe &&
bundle install
WORKDIR /oxml_xxe
EXPOSE 4567
ENTRYPOINT ["ruby", "server.rb"]
CMD ["-o", "0.0.0.0"]
ENTRYPOINT ["ruby", "server.rb", "-o", "0.0.0.0"]

0 comments on commit e773320

Please sign in to comment.