Usage details
docker build -t test_hackney:19.1 .
docker run -it --rm test_hackney:19.1 rebar3 shell
| FROM erlang:19.1 | |
| ENV APP_HOME /hackney | |
| WORKDIR $APP_HOME | |
| ADD . $APP_HOME | |
| RUN rebar3 tree | |
| CMD ["rebar3", "shell"] | 
| {erl_opts, [debug_info]}. | |
| {deps, [ | |
| {hackney, ".*", {git, "git://github.com/benoitc/hackney.git", {branch, "master"}}} | |
| ]}. |