Skip to content

Commit

Permalink
Add protocol Dockerfile (#297)
Browse files Browse the repository at this point in the history
Allows for viewing and creating ASCII network packet diagrams. See
http://www.luismg.com/protocol/
  • Loading branch information
jabley authored and jessfraz committed Dec 16, 2017
1 parent 1dcfad4 commit c9fefef
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions protocol/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
FROM alpine:latest
LABEL maintainer "James Abley <[email protected]>"

RUN buildDeps=' \
ca-certificates \
openssl \
' \
&& apk --no-cache add --update \
python3 \
$buildDeps \
&& wget https://github.com/luismartingarcia/protocol/archive/master.zip \
&& unzip master.zip \
&& cd protocol-master && python3 setup.py install \
&& apk del --purge $buildDeps

ENTRYPOINT ["protocol"]

0 comments on commit c9fefef

Please sign in to comment.