Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Patching Dockerfile #36

Merged
merged 1 commit into from
May 28, 2020
Merged
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
Patching Dockerfile
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
commit e7733207f25b58865b1adeff53585e9c93c5d8c2
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"]