-
Notifications
You must be signed in to change notification settings - Fork 230
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from BuffaloWill/Docker
Migrating work done in #23
- Loading branch information
Showing
2 changed files
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM ruby:2.3.5-slim | ||
RUN apt-get update && \ | ||
apt-get install -y make git libsqlite3-dev libxslt-dev libxml2-dev zlib1g-dev gcc && \ | ||
apt-get clean | ||
RUN git clone --depth=1 https://github.com/BuffaloWill/oxml_xxe.git /oxml_xxe && \ | ||
cd /oxml_xxe && \ | ||
bundle install | ||
WORKDIR /oxml_xxe | ||
EXPOSE 4567 | ||
ENTRYPOINT ["ruby", "server.rb"] | ||
CMD ["-o", "0.0.0.0"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Docker Build | ||
|
||
This docker build is authored by 0xdevalias (https://github.com/0xdevalias/docker-oxml_xxe), maintained as part of oxml_xxe. | ||
|
||
|