Skip to content
Snippets Groups Projects
Commit 842063be authored by DDuarte's avatar DDuarte
Browse files

Add experimental Docker support to run WPP

parent 7cf5a3f1
No related branches found
No related tags found
No related merge requests found
FROM mono:4.8.0.524-onbuild
ENTRYPOINT [ "mono", "WowPacketParser.exe" ]
......@@ -52,3 +52,13 @@ Nightly Builds
- [Debug](https://ci.appveyor.com/api/projects/DDuarte/wowpacketparser-191/artifacts/WowPacketParser/WPP.zip?job=Image:%20Visual%20Studio%202017;%20Configuration:%20Debug&branch=master)
- [Release](https://ci.appveyor.com/api/projects/DDuarte/wowpacketparser-191/artifacts/WowPacketParser/WPP.zip?job=Image:%20Visual%20Studio%202017;%20Configuration:%20Release&branch=master)
Docker (experimental)
---------------------
It is possible run WPP on Docker by running the following commands:
- Build the image: `docker build -t wpp .`
- Run it: `docker run -it --rm -v /place/where/sniffs/are/kept:/usr/src/app/build/sniffs wpp:latest sniffs/sniffname.pkt # Run`
*/place/where/sniffs/are/kept* should your local directory containing the .pkt file and *sniffname.pkt* the file to be parsed.
Output of the parser will be added to */place/where/sniffs/are/kept*
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment