Merge pull request #59 from int00h5525/master

Adding Scapy to development server
This commit is contained in:
Neale Pickett 2019-03-21 11:30:09 -06:00 committed by GitHub
commit 88e8ba7071
2 changed files with 6 additions and 1 deletions

View File

@ -6,7 +6,10 @@ RUN apk --no-cache add \
jpeg-dev \
zlib-dev \
&& \
pip3 install pillow
pip3 install \
scapy==2.4.2 \
pillow==5.4.1
COPY devel /app/
COPY example-puzzles /puzzles/

View File

@ -27,6 +27,8 @@ Running a Development Server
And point a browser to http://localhost:8080/ (or whatever host is running the server).
The development server includes a number of Python libraries that we have found useful in writing puzzles.
When you're ready to create your own puzzles,
read [the devel server documentation](docs/devel-server.md).