asciimoo / wuzz

Interactive cli tool for HTTP inspection
GNU Affero General Public License v3.0
10.56k stars 412 forks source link

Add Dockerfile #131

Closed yardenshoham closed 4 years ago

yardenshoham commented 4 years ago

Added a Dockerfile that builds a wuzz Docker image. This Dockerfile uses multi-stage builds and produces an image with a size of 17.2MB.

Build

docker image build -t wuzz .

Run

docker image run -it --rm wuzz

One could "install" wuzz using the following:

alias wuzz='docker image run -it --rm yardenshoham/wuzz'

I published the image though it'll probably be better to setup automated builds on Docker hub, @asciimoo thoughts?

Closes #11

Related: https://github.com/asciimoo/wuzz/pull/11#issuecomment-663840992