Skip to content

Instantly share code, notes, and snippets.

@jastkand
Last active October 29, 2016 06:06
Show Gist options
  • Save jastkand/e6298c4b48ceba0280472ecadc3ecdac to your computer and use it in GitHub Desktop.
Save jastkand/e6298c4b48ceba0280472ecadc3ecdac to your computer and use it in GitHub Desktop.
hackney handshake failure

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"}}}
]}.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment