Giter Club home page Giter Club logo

docker-elixir's Introduction

About this Repo

Docker Stars Docker Pulls Image Layers

Build Status

This is for elixir latest stable image and next -dev image.

REPOSITORY TAG           IMAGE ID            CREATED             SIZE
elixir     v1.5.0-dev-b3e6c54    8948fc7adc11        11 minutes ago      755 MB
elixir     v1.4.0-rc.1-slim      0c49845329c2        29 minutes ago      292.4 MB
elixir     v1.4.0-rc.1           a50b16247e14        32 minutes ago      757 MB
elixir     1.3           9e04e73b74d4        16 minutes ago      766.4 MB
elixir     1.3-slim      7d901dfc3a5e        15 minutes ago      293.9 MB
elixir     1.2           5165c41f0185        6 days ago          773.8 MB
➸ docker run -it --rm elixir:v1.5.0-dev
Erlang/OTP 19 [erts-8.0] [source] [64-bit] [smp:8:8] [async-threads:10] [hipe] [kernel-poll:false]

Interactive Elixir (1.5.0-dev) - press Ctrl+C to exit (type h() ENTER for help)
iex(1)> System.version
"1.5.0-dev"
iex(2)> OptionParser.parse(["--verbose", "-v", "-v"], switches: [verbose: :count], aliases: [v: :verbose])
{[verbose: 3], [], []}
iex(2)> OptionParser.parse(["--verbose", "-v", "-v"], switches: [verbose: :count], aliases: [v: :verbose])
{[verbose: 3], [], []}
iex(3)> {opts, _, _} = v(2)
{[verbose: 3], [], []}
iex(4)> OptionParser.to_argv(opts, switches: [verbose: :count])
["--verbose", "--verbose", "--verbose"]
iex(5)>

How to get the latest elixir

All the elixir's upstream stable versions are pushed over docker official hub (https://hub.docker.com/_/elixir/), while rc images and the latest development version are not; Like this 1.5.0-dev image, if you want to get the latest bleeding edge elixir code from master branch, you may get its git commit id (https://github.com/elixir-lang/elixir/) and sha256, modify the 1.5/Dockerfile locally and build it:

$ docker build -t elixir:1.5.0-dev ./1.5
[...]

docker-elixir's People

Contributors

alexmarold avatar alexriedler avatar bgentry avatar binaryseed avatar blatyo avatar bryannaegele avatar c0b avatar clekstro avatar edevil avatar emerleite avatar getong avatar halfdan avatar jc00ke avatar kronicdeth avatar kwojtaszek avatar maennchen avatar potto007 avatar sdwolfz avatar tianon avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

docker-elixir's Issues

Add -buster tags to each image variant

A lot of other programming runtimes like Python, Ruby and Node explicitly have -buster tags in the list of tags that appear on the Docker Hub.

I think Elixir should too.

Currently you have image tags like elixir:1.9-slim but it's beneficial to have elixir:1.9-slim-buster because now at a glance we can see the underlying image is using Buster.

At the time of making this comment, it is using Buster under the hood because Buster is the latest stable release of Debian but for a while it was Stretch and now as an end user we don't know which one is being used unless we look at the Dockerfile and trace through the base image chain until eventually arriving at the Erlang image.

Use an elixir compiled on OTP-20+ for 1.7 images

Due to a changed internal debugging format, OTP 21 does not support the OTP-19 style debug info. This causes a lot of errors about not found debug symbols when trying to use dialyzer in this constellation.

To actually make dialyzer happy again one needs to use an elixir that is compiled with OTP 20 at least.

[QUESTION] Setting up LANG

Newbie, I notice that most of the Dockerfile excepts this one do something like this

RUN locale-gen en_US.UTF-8
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US.UTF-8
ENV LC_ALL en_US.UTF-8

Why this Dockerfile doesn't it? What that does?

Build more OTP versions?

Hi @c0b!

Thank you for all for the work on maintaining the Docker images!

Now that GitHub Actions is using containers, I expect developers to want to use more combinations of Elixir+OTP. For deployment, it is fine (and even recommended) to push to the latest versions, but as a maintainer of Ecto/Phoenix/etc, I may want to test more combinations (for example, 1.9+22.3 and 1.9+22.0). In this case, would it be possible for you build images for each support OTP branch? For example, for v1.9, it would be 1.9+20.3, 1.9+21.3, and 1.9+22-latest. The complete list can always be found here: https://hexdocs.pm/elixir/compatibility-and-deprecations.html#compatibility-between-elixir-and-erlang-otp

Btw, I have no idea how hard this actually is, so if for some reason this is tons of work, then feel free to close this.

Thanks!

libncursesw.so.6: cannot open shared object file

I'm not sure what is missing

FROM elixir:1.5.1

EXPOSE 4001

ADD . /app/
WORKDIR /app
RUN mix do local.hex --force, local.rebar --force, deps.get
RUN MIX_ENV=prod mix release --env prod

CMD ["_build/prod/rel/my_app/bin/my_app", "foreground"]

I have tried to install lib32ncurses5 and libncurses5 without success

How to run :observer in a Docker container?

I'm learning Elixir in a Docker container and I get the following error when I try to use the observer:

iex(1)> :observer.start

16:28:34.775 [error] ERROR: Could not find 'wxe_driver.so' in: /usr/local/lib/erlang/lib/wx-1.7.1/priv

{:error,
 {{:load_driver, 'No driver found'},
  [{:wxe_server, :start, 1, [file: 'wxe_server.erl', line: 65]},
   {:wx, :new, 1, [file: 'wx.erl', line: 115]},
   {:observer_wx, :init, 1, [file: 'observer_wx.erl', line: 104]},
   {:wx_object, :init_it, 6, [file: 'wx_object.erl', line: 355]},
   {:proc_lib, :init_p_do_apply, 3, [file: 'proc_lib.erl', line: 247]}]}}

I tried to add the following to my custom DockerFile:

RUN echo 'deb http://ftp.de.debian.org/debian wheezy main' >> /etc/apt/sources.list
RUN apt-get update && apt-get install -qqy libwxgtk2.8-dev libgl1-mesa-dev libglu1-mesa-dev libpng3

but I'm still getting the same error

Could you please help me?
Thanks in advance!

elixir:1.7.4-alpine breaking change

The docker image for elixir:1.7.4-alpine has changed recently (5 hours ago) and causes compatibility issues due to changes in the base images (erlang:21-alpine, alpine:3.9).

[load_failed,"Failed to load NIF library: 'Error loading shared library libcrypto.so.1.1: No such file or directory (needed by /app/lib/crypto-4.4.1/priv/lib/crypto.so)'","OpenSSL might not be installed on this system.\n"]

when do new images get pushed to docker hub?

this might not be the best place to ask, so let me know if I should post that question somewhere else.
It appears that elixir 1.7 is already available in this repo, however it's not yet available on docker hub.
Just wondering if I can help/something needs to be done.

Cheers

otp-21 version

If I understood correctly, the idea was to always having an OTP-21 version with the latest elixir release. Is that correct?

If so, does it mean there is going to be an 1.7-otp-21 image, that replaces the 1.6-otp-21?

Can't user :observer.start inside container

I run phoenix server into container at Mac, I run the container as:

docker run -p 4011:4011 -p 4033:4033 -v ~/.Xauthority:/root/.Xauthority -v /Users/samir/Documents/projects/elixir:/usr/src -e DISPLAY=$DISPLAY --network host -it elixir:1.5.2 bash

then, when I start phoenix as:

iex -S mix phx.server

I got error when try to run :observer.start:

iex(1)> :observer.start
13:50:45: Error: Unable to initialize GTK+, is DISPLAY set properly?
{:error,
{{:einval, 'Could not initiate graphics'},
[{:wxe_server, :start, 1, [file: 'wxe_server.erl', line: 65]},
{:wx, :new, 1, [file: 'wx.erl', line: 115]},
{:observer_wx, :init, 1, [file: 'observer_wx.erl', line: 98]},
{:wx_object, :init_it, 6, [file: 'wx_object.erl', line: 372]},
{:proc_lib, :init_p_do_apply, 3, [file: 'proc_lib.erl', line: 247]}]}}

inside container:

$ echo $DISPLAY
/private/tmp/com.apple.launchd.xdi35OUtZR/org.macosforge.xquartz:0

Any idea?

** (Code.LoadError) could not load /config/config.exs

When running the mix local.hex --force command via the docker file , we are getting these errors

** (Code.LoadError) could not load /config/config.exs
    (elixir) lib/code.ex:1147: Code.find_file/2
    (elixir) lib/code.ex:706: Code.eval_file/2
    (mix) lib/mix/config.ex:220: Mix.Config.eval!/2
    (mix) lib/mix/tasks/loadconfig.ex:38: Mix.Tasks.Loadconfig.load/1
    (mix) lib/mix/tasks/loadconfig.ex:28: Mix.Tasks.Loadconfig.run/1
    (mix) lib/mix/task.ex:331: Mix.Task.run_task/3
    (mix) lib/mix/cli.ex:78: Mix.CLI.run_task/2

We checked that the files are in proper location , can someone confirm that is this problem with our elixer config side or from the docker file ?

Unexpected error while executing my app

Hi,

I've created a Dockerfile for my phoenix application.
My app is built using mix release thanks to the distillery package.

Here is my Dockerfile:

FROM elixir:1.6-alpine

ENV API_VERSION 0.0.1
ENV MIX_HOST 8080

RUN mkdir /app && \
  apk --no-cache add tar bash

COPY ./archives/api_${API_VERSION}.tar.gz /app/api.tar.gz

RUN cd /app && \
  tar -zxvf /app/api.tar.gz && \
  rm /app/api.tar.gz && \
  apk del tar && \
  rm -rf /var/cache/apk/*

WORKDIR /app/releases/${API_VERSION}

EXPOSE $MIX_HOST
VOLUME /app

CMD ["./api.sh", "foreground"]

But I got the following error:

/app/erts-9.3.1/bin/erlexec: line 1: syntax error: unexpected "("

While it's perfectly working on my host machine.

Do you have any idea ?

Thanks,

[alpine] ca-certificates

could we get all images loaded with ca-certificates and update-ca-certificates for all the alpine images. This is causing issues with some HTTPS calls.

apk --no-cache add ca-certificates && update-ca-certificates

The versions of Python in the image include a vulnerability (CVE-2020-8492)

I attempted to bring the Elixir 10.3 image into our internal repo. Our mechanism does a scan for vulnerabilities and my request was rejected because of the version(s) of Python in that image. The CVE that caused the rejection was CVE-2020-8492 with the description:

Python 2.7 through 2.7.17, 3.5 through 3.5.9, 3.6 through 3.6.10, 3.7 through 3.7.6, and 3.8 through 3.8.1 allows an HTTP server to conduct Regular Expression Denial of Service (ReDoS) attacks against a client because of urllib.request.AbstractBasicAuthHandler catastrophic backtracking.. Impacted Image File(s): /usr/lib/python3.7/urllib/request.py

I note the image includes Python 3.7.3 and 2.7.16

Fail to install node with sudo

Step 2/17 : RUN curl -sL https://deb.nodesource.com/setup_5.x | sudo -E bash - && apt-get install -y nodejs
 ---> Running in 30fe3e494810
/bin/sh: 1: sudo: not found

Supporting a history of minor versions

I maintain a production application that is deployed via a docker image that references version 1.6. Earlier this week, my application quietly upgraded from 1.6.5 to 1.6.6 (and Erlang/OTP 20 to 21) which subsequently led to some errors.

I recommend providing a history of each version so we can more easily lock our version and only upgrade to new minor versions intentionally.

I know we can maintain our own image (which we are doing now to deploy 1.6.5, but it would be great if we could simply reference the official version with a minor number that is not the latest version.

Add git by default

Hi,

I think It would be more CI friendly if git could be installed by default, as it is often used to fetch projects, or dependencies.

What do you think?

Alpine-based images with Phoenix projects with brunch-sass break

It seems that brunch-sass downloads node-sass, which attempts to download musl_binding 72 (whatever that is) which is then not found:

Downloading binary from https://github.com/sass/node-sass/releases/download/v4.9.4/linux_musl-x64-72_binding.node
Cannot download "https://github.com/sass/node-sass/releases/download/v4.9.4/linux_musl-x64-72_binding.node": 

HTTP error 404 Not Found

And then everything goes to hell. Steps to reproduce:

docker pull elixir:1.9-alpine
# don't skip the previous step, it only fails with latest image that is based on alpine:3.11
docker run --rm elixir:1.9-alpine /bin/sh -c "apk add --update nodejs npm && npm install sass-brunch"

When attempting the same with image alpine:3.10, things work fine. I realise that this is an upstream issue, but it breaks all of our Phoenix projects which still use Brunch, which is quite a lot.

Elixir fails with error 'dlsym: Resource temporarily unavailable'

Our app in production is built in two stages from image elixir:1.8.2-alpine and runs on alpine and recent builds (some time in the last 10 days or so) have failed to start at all with error "dlsym: Resource temporarily unavailable".

I've noticed all the elixir images have been rebuilt 5 days ago.

Forcing images to be built off the last working image SHA elixir:1.8.2-alpine@sha256:cd04d80e85430b803f185553176803d935ead138322904d029ff6a9f7dbcd2a1 and run off alpine@sha256:769fddc7cc2f0a1c35abb2f91432e8beecf83916c421420e6a6da9f8975464b6 fixes the error. Not sure which of the two images is the culprit.

There's a relevant bug report on Alpine Linux about this: https://bugs.alpinelinux.org/issues/9983

I reckon the images should be tested somehow before pushing to Docker Hub, as currently even a simple elixir -v fails with the above error.

No matching manifest for linux/amd64 in the manifest list entries

Got the above error when running docker pull elixir:1.6.4-alpine in my linux machine.

Detail message

$ docker pull elixir:1.6.4-alpine
1.6.4-alpine: Pulling from library/elixir
no matching manifest for linux/amd64 in the manifest list entries

And looks like the image in linux/amd64 architecture is missing.

$ docker manifest inspect elixir:1.6.4-alpine
{
   "schemaVersion": 2,
   "mediaType": "application/vnd.docker.distribution.manifest.list.v2+json",
   "manifests": [
      {
         "mediaType": "application/vnd.docker.distribution.manifest.v2+json",
         "size": 1158,
         "digest": "sha256:3c4b0b23e762491acc44dcba44c2e1f7a04942523e54204f97ee94a386159e8f",
         "platform": {
            "architecture": "ppc64le",
            "os": "linux"
         }
      },
      {
         "mediaType": "application/vnd.docker.distribution.manifest.v2+json",
         "size": 1158,
         "digest": "sha256:bc1f54d2015114bf177520d2c0a7e85e40b81741f051d163d3912a7391b99733",
         "platform": {
            "architecture": "s390x",
            "os": "linux"
         }
      }
   ]
}

Is there any CI to build in linux/amd64 architecture as well?

clarify that wx widgets only work on debian/ubuntu

i've got an OOM from one of our application (basically for the first time, ever) which led me to erlang's crashdump viewer - running it complained about could not find wxe_driver.so in $path ...

which i was wondering about because https://github.com/c0b/docker-elixir/wiki/use-observer suggests that "everything is ready to go" and i had absolutely no luck getting it to work.

only after comparing https://github.com/erlang/docker-erlang-otp/blob/master/21/alpine/Dockerfile to https://github.com/erlang/docker-erlang-otp/blob/master/21/Dockerfile i've realized we're running alpine based images which don't have/get the wx libraries -- switching to debian/ubuntu based images worked.

maybe we can/should add a quick note for guys like me that are not expecting this? i mean, in hindsight probably not that surprising that (supposedly small) alpine builds don't contain such debugging/development dependencies .. just not that obvious if you're deep down the rabbit hole of debugging an erlang crashdump for the first time :) wdyt @c0b ?

ONBUILD Issue

I can't work out why the ONBUILD images are there?

image with otp variants using hexpm/bob

Currently this project uses the official elixir repo precompiled release which is compiled with the oldest supported otp.

However, as OTP moves forward (recently 21.0 was released with httpc bug fix), it could be common to use the latest, not the oldest supported OTP.

For example, asdf-vm/asdf-elixir allows installing elixir with specific otp version (e.g. 1.6.6-otp-21) by using prebuilt packages from hexpm/bob

In short

  • introduce images with otp variants like 1.6.6-otp-21`
  • use bob for prebuilt elixir

update:

I thought hexpm/bob is kind of "official" binary - but if you don't think it's good to use that, then of course we can build elixir here :)

Tighter version constraints for Erlang/OTP

We've had a few issues where building a new image for our release has upgraded the Erlang/OTP version automatically because the Elixir images only specify the Erlang major version.

For example, the Elixir 1.7 image has

FROM erlang:21

Which means minor and patch version upgrades happen automatically.

The most recent time this has bitten us was yesterday. According to the Erlang bug board [1,2] and Elixir + Erlang Slack groups, others have also been affected.

  1. https://bugs.erlang.org/browse/ERL-883
  2. https://bugs.erlang.org/browse/ERL-884

One option is to give consumers more flexibility in terms of version constraints.

For example, tags can use a convention such as this which locks on an OTP minor version, giving more control on when to upgrade, while allowing patches to come through.

1.7-otp-21
1.7-otp-21.2

1.7.4-otp-21
1.7.4-otp-21.2

What do you think about the proposal?

OTP version mismatch

When I use the elixir:1.6.1-alpine image, there's a mismatch between the OTP version on the OS and the OTP version for Elixir.

RUN elixir -v

outputs

Erlang/OTP 20 [erts-9.2] [source] [64-bit] [smp:4:4] [ds:4:4:10] [async-threads:10] [hipe] [kernel-poll:false]
Elixir 1.6.1 (compiled with OTP 19)

I think this is causing some intermittent Sentry compilation errors like getsentry/sentry-elixir#232.

OpenSSL might not be installed on this system error

Using tag 1.8.1-alpine of the image I have this error on startup

[load_failed,"Failed to load NIF library: 'Error loading shared library libcrypto.so.1.1: No such file or directory (needed by /opt/app/lib/crypto-4.4/priv/lib/crypto.so)'","OpenSSL might not be installed on this system.\n"]
"Unable to load crypto library. Failed with error:~n\"~p, ~s\"~n~s"
{error_logger,error_msg}
#{label=>{proc_lib,crash},report=>[[{initial_call,{supervisor,kernel,['Argument__1']}},{pid,<0.1099.0>},{registered_name,[]},{error_info,{exit,{on_load_function_failed,crypto},[{init,run_on_load_handlers,0,[]},{kernel,init,1,[{file,"kernel.erl"},{line,212}]},{supervisor,init,1,[{file,"supervisor.erl"},{line,295}]},{gen_server,init_it,2,[{file,"gen_server.erl"},{line,374}]},{gen_server,init_it,6,[{file,"gen_server.erl"},{line,342}]},{proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,249}]}]}},{ancestors,[kernel_sup,<0.1073.0>]},{message_queue_len,0},{messages,[]},{links,[<0.1075.0>]},{dictionary,[]},{trap_exit,true},{status,running},{heap_size,376},{stack_size,27},{reductions,273}],[]]}
#{label=>{supervisor,start_error},report=>[{supervisor,{local,kernel_sup}},{errorContext,start_error},{reason,{on_load_function_failed,crypto}},{offender,[{pid,undefined},{id,kernel_safe_sup},{mfargs,{supervisor,start_link,[{local,kernel_safe_sup},kernel,safe]}},{restart_type,permanent},{shutdown,infinity},{child_type,supervisor}]}]}
#{label=>{proc_lib,crash},report=>[[{initial_call,{application_master,init,['Argument__1','Argument__2','Argument__3','Argument__4']}},{pid,<0.1072.0>},{registered_name,[]},{error_info,{exit,{{shutdown,{failed_to_start_child,kernel_safe_sup,{on_load_function_failed,crypto}}},{kernel,start,[normal,[]]}},[{application_master,init,4,[{file,"application_master.erl"},{line,138}]},{proc_lib,init_p_do_apply,3,[{file,"proc_lib.erl"},{line,249}]}]}},{ancestors,[<0.1071.0>]},{message_queue_len,1},{messages,[{'EXIT',<0.1073.0>,normal}]},{links,[<0.1071.0>,<0.1069.0>]},{dictionary,[]},{trap_exit,true},{status,running},{heap_size,610},{stack_size,27},{reductions,193}],[]]}
#{label=>{application_controller,exit},report=>[{application,kernel},{exited,{{shutdown,{failed_to_start_child,kernel_safe_sup,{on_load_function_failed,crypto}}},{kernel,start,[normal,[]]}}},{type,permanent}]}
{"Kernel pid terminated",application_controller,"{application_start_failure,kernel,{{shutdown,{failed_to_start_child,kernel_safe_sup,{on_load_function_failed,crypto}}},{kernel,start,[normal,[]]}}}"}
    args:     format:     label: 2019-02-06 22:35:52.269014 crash_report        2019-02-06 22:35:52.269078 supervisor_report   2019-02-06 22:35:53.294613 crash_report        2019-02-06 22:35:53.330099 std_info            Kernel pid terminated (application_controller) ({application_start_failure,kernel,{{shutdown,{failed_to_start_child,kernel_safe_sup,{on_load_function_failed,crypto}}},{kernel,start,[normal,[]]}}})

Crash dump is being written to: erl_crash.dump...done

Version 1.8.0 is fine instead

v1.6.6 does not contain elixir source code

The Image elixir:1.6.5 contained the elixir source code. Therefore tools like dialyzer could perform static code analysis.

The newest image seems not to contain those source files anymore.

Dialyzer Output
[:absinthe, :absinthe_phoenix, :absinthe_plug, :apollo_tracing, :asn1, :cidr,
 :compiler, :cors_plug, :countriex, :cowboy, :cowlib, :crypto, :decimal, :eex,
 :elixir, :geolix, :gettext, :glob, :kernel, :logger, :mime, :phoenix,
 :phoenix_client_ssl, :phoenix_pubsub, :plug, :poison, :poolboy, :public_key,
 :ranch, :remote_ip, :runtime_tools, :ssl, :stdlib]
Finding suitable PLTs
Looking up modules in dialyxir_erlang-21.0.1_elixir-1.6.6_deps-dev.plt
Looking up modules in dialyxir_erlang-21.0.1_elixir-1.6.6.plt
Looking up modules in dialyxir_erlang-21.0.1.plt
Finding applications for dialyxir_erlang-21.0.1.plt
Finding modules for dialyxir_erlang-21.0.1.plt
Creating dialyxir_erlang-21.0.1.plt
Looking up modules in dialyxir_erlang-21.0.1.plt
Removing 3 modules from dialyxir_erlang-21.0.1.plt
Checking 12 modules in dialyxir_erlang-21.0.1.plt
Adding 172 modules to dialyxir_erlang-21.0.1.plt
Finding applications for dialyxir_erlang-21.0.1_elixir-1.6.6.plt
Finding modules for dialyxir_erlang-21.0.1_elixir-1.6.6.plt
Copying dialyxir_erlang-21.0.1.plt to dialyxir_erlang-21.0.1_elixir-1.6.6.plt
Looking up modules in dialyxir_erlang-21.0.1_elixir-1.6.6.plt
Checking 184 modules in dialyxir_erlang-21.0.1_elixir-1.6.6.plt
Adding 228 modules to dialyxir_erlang-21.0.1_elixir-1.6.6.plt
:dialyzer.run error: Analysis failed with error:
Could not scan the following file(s):
  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_utils.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_tokenizer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_rewrite.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_sup.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_parser.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_quote.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_overridable.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_module.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_map.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_locals.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_interpolation.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_lexical.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_fn.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_import.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_expand.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_errors.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_erl_var.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_erl_try.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_erl_pass.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_erl_for.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_erl_compiler.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_erl_clauses.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_erl.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_env.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_dispatch.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_def.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_config.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_compiler.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_code_server.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_clauses.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_bootstrap.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_bitstring.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_aliases.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.WithClauseError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Version.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Version.Requirement.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Version.Parser.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Version.InvalidVersionError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Version.InvalidRequirementError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.UnicodeConversionError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.UndefinedFunctionError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.URI.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Tuple.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.TryClauseError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.TokenMissingError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Time.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Task.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Task.Supervisor.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Task.Supervised.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.SystemLimitError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.System.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.SyntaxError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Supervisor.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Supervisor.Spec.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Supervisor.Default.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.StringIO.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Stream.Reducers.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Unicode.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Tokenizer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Normalizer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.Version.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.Version.Requirement.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.URI.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.Time.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.NaiveDateTime.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.List.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.Integer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.Float.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.DateTime.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.Date.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.BitString.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.Atom.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Casing.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Break.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Set.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.RuntimeError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Registry.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Registry.Supervisor.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Regex.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Registry.Partition.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Record.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Regex.CompileError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Record.Extractor.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Range.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Protocol.UndefinedError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Protocol.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Process.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Port.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Path.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Path.Wildcard.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.OptionParser.ParseError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.OptionParser.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Node.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.NaiveDateTime.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Module.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Module.LocalsTracker.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.MapSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.MatchError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Map.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Macro.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Macro.Env.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.List.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.List.Chars.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.List.Chars.List.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.List.Chars.Integer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.List.Chars.Float.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.List.Chars.BitString.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.List.Chars.Atom.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.ParallelCompiler.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Keyword.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.KeyError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.Utils.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.Typespec.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.SpecialForms.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.ParallelRequire.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.LexicalTracker.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.ErrorHandler.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.CLI.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Integer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Version.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Version.Requirement.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Tuple.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Time.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Regex.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Reference.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Range.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Port.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Opts.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.PID.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.NaiveDateTime.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.MapSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Map.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.List.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Integer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.HashSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.HashDict.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Function.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Float.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Error.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.DateTime.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Date.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Date.Range.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.BitString.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.IO.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Atom.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Any.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Algebra.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.IO.StreamError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.IO.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.IO.ANSI.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.IO.ANSI.Sequence.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.HashSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.IO.ANSI.Docs.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.GenServer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.HashDict.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.GenEvent.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.GenEvent.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.BadStructError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.FunctionClauseError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Float.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.File.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.File.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.File.Stat.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.File.Error.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.File.LinkError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Exception.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.File.CopyError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.ErlangError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.Map.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.Range.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.MapSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.List.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.IO.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.HashSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.HashDict.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.GenEvent.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enum.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.Function.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.File.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.Date.Range.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.CondClauseError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enum.OutOfBoundsError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enum.EmptyError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.DynamicSupervisor.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Dict.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.DateTime.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Date.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Date.Range.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.CompileError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.MapSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.Map.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.List.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.IO.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.HashSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.File.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.HashDict.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.BitString.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Code.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Code.LoadError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Code.Identifier.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Code.Formatter.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.CaseClauseError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Calendar.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Calendar.ISO.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Bitwise.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Behaviour.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Base.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.BadMapError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.BadFunctionError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.BadBooleanError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.BadArityError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Atom.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.ArithmeticError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.ArgumentError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Application.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Agent.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Access.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Agent.Server.beam
  Recompile with +debug_info or analyze starting from source code
Last messages in the log cache:
  Reading files and computing callgraph... 
Finding applications for dialyxir_erlang-21.0.1_elixir-1.6.6_deps-dev.plt
Finding modules for dialyxir_erlang-21.0.1_elixir-1.6.6_deps-dev.plt
Copying dialyxir_erlang-21.0.1_elixir-1.6.6.plt to dialyxir_erlang-21.0.1_elixir-1.6.6_deps-dev.plt
Looking up modules in dialyxir_erlang-21.0.1_elixir-1.6.6_deps-dev.plt
Checking 184 modules in dialyxir_erlang-21.0.1_elixir-1.6.6_deps-dev.plt
Adding 1000 modules to dialyxir_erlang-21.0.1_elixir-1.6.6_deps-dev.plt
:dialyzer.run error: Analysis failed with error:
Could not scan the following file(s):
  Could not get Core Erlang code for: /usr/local/lib/logger/ebin/Elixir.Logger.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/logger/ebin/Elixir.Logger.WatcherSupervisor.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/logger/ebin/Elixir.Logger.Watcher.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/logger/ebin/Elixir.Logger.Utils.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/logger/ebin/Elixir.Logger.Translator.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/logger/ebin/Elixir.Logger.Formatter.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/logger/ebin/Elixir.Logger.ErrorHandler.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/logger/ebin/Elixir.Logger.ErlangHandler.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/logger/ebin/Elixir.Logger.Config.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/logger/ebin/Elixir.Logger.Backends.Console.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/logger/ebin/Elixir.Logger.App.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_utils.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_tokenizer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_sup.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_rewrite.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_quote.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_parser.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_overridable.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_map.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_module.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_lexical.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_locals.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_interpolation.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_import.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_fn.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_expand.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_errors.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_erl_var.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_erl_pass.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_erl_try.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_erl_for.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_erl_compiler.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_erl_clauses.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_erl.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_env.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_code_server.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_dispatch.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_def.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_config.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_compiler.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_clauses.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_bootstrap.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_bitstring.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir_aliases.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/elixir.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.WithClauseError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Version.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Version.Requirement.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Version.Parser.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Version.InvalidVersionError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Version.InvalidRequirementError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.UnicodeConversionError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.UndefinedFunctionError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.URI.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Tuple.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.TryClauseError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.TokenMissingError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Time.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Task.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Task.Supervisor.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.SystemLimitError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Task.Supervised.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.System.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.SyntaxError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Supervisor.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Supervisor.Spec.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Supervisor.Default.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.StringIO.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Unicode.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Normalizer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Tokenizer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.Version.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.Version.Requirement.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.URI.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.Time.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.Integer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.NaiveDateTime.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.List.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.Float.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.DateTime.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.Date.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.BitString.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Chars.Atom.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Casing.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.String.Break.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Stream.Reducers.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Set.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.RuntimeError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Registry.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Registry.Supervisor.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Registry.Partition.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Regex.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Regex.CompileError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Record.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Record.Extractor.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Range.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Protocol.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Protocol.UndefinedError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Process.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Port.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.OptionParser.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Path.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Path.Wildcard.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.OptionParser.ParseError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Node.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.NaiveDateTime.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Module.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Module.LocalsTracker.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.MatchError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.MapSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Map.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Macro.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.List.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Macro.Env.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.List.Chars.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.List.Chars.List.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.List.Chars.Integer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.List.Chars.Float.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.List.Chars.BitString.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Keyword.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.List.Chars.Atom.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.KeyError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.Utils.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.Typespec.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.ParallelRequire.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.SpecialForms.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.ParallelCompiler.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.LexicalTracker.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.ErrorHandler.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Kernel.CLI.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Integer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Version.Requirement.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Version.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Tuple.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Time.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Regex.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Reference.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Range.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Port.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.PID.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Opts.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.NaiveDateTime.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.MapSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Map.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.List.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Integer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.HashSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.HashDict.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Function.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Float.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Error.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.DateTime.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Date.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Date.Range.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.BitString.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Atom.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Any.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Inspect.Algebra.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.IO.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.IO.StreamError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.IO.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.IO.ANSI.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.IO.ANSI.Sequence.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.IO.ANSI.Docs.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.HashSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.HashDict.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.GenServer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.GenEvent.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.GenEvent.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.FunctionClauseError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Float.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.File.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.File.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.File.Stat.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.File.Error.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.File.LinkError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.File.CopyError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Exception.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.ErlangError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.MapSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.Range.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.HashSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.Map.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.List.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.IO.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.HashDict.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.GenEvent.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.File.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.Function.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enumerable.Date.Range.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enum.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enum.OutOfBoundsError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Enum.EmptyError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.DynamicSupervisor.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Dict.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.DateTime.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Date.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Date.Range.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.CondClauseError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.CompileError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.MapSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.Map.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.List.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.IO.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.HashDict.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.HashSet.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.File.Stream.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Collectable.BitString.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Code.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Code.LoadError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Code.Identifier.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Code.Formatter.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.CaseClauseError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Calendar.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Bitwise.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Calendar.ISO.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Base.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Behaviour.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/eex/ebin/Elixir.EEx.Engine.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.BadStructError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.BadMapError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.BadFunctionError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.BadBooleanError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.BadArityError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Atom.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.ArithmeticError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.ArgumentError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Application.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Agent.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Agent.Server.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/elixir/ebin/Elixir.Access.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/eex/ebin/Elixir.EEx.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/eex/ebin/Elixir.EEx.Tokenizer.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/eex/ebin/Elixir.EEx.SyntaxError.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/eex/ebin/Elixir.EEx.SmartEngine.beam
  Recompile with +debug_info or analyze starting from source code  Could not get Core Erlang code for: /usr/local/lib/eex/ebin/Elixir.EEx.Compiler.beam
  Recompile with +debug_info or analyze starting from source code
Last messages in the log cache:
  Reading files and computing callgraph... 
Starting Dialyzer
dialyzer args: [
  check_plt: false,
  init_plt: '/joshmartin/services/art-localization/_build/dev/dialyxir_erlang-21.0.1_elixir-1.6.6_deps-dev.plt',
  files_rec: ['/joshmartin/services/art-localization/_build/dev/lib/art_localization/ebin'],
  warnings: [:unknown]
]
done in 0m4.3s

Use more specific otp version for elixir 1.7

Is it possible to use more specific OTP version, than OTP:21 for 1.7 or at least 1.7.4 elixir? Since new OTP image update breaks the elixir image (this is the second time on my memory, but different error). E.g., with the latest OTP 21.2.5 (16 hours ago) getting this error:

":load_failed, Failed to load NIF library: 'Error loading shared library libcrypto.so.1.1: No such file or directory (needed by ./lib/crypto-4.4/priv/lib/crypto.so)'"

make alpine based Elixir Image for Production Deployment

the debian based official images are really good and developer friendly, while I see a trend many images start to support an alpine based image for really slim, and production ready deployment, invite @vovimayhem from (docker-library/official-images#1171) and @so0k (from erlang/docker-erlang-otp#6) to comment,

  1. https://hub.docker.com/_/redis/
  2. https://hub.docker.com/_/alpine/

if that feature is really in demand wanted by many, either one of us can make it happen; my plan is to make an alpine based Erlang image, then Elixir image which is based on that can also benefit.

Missing Elixir OTP 23 Release

I am running into an issue where a fix for argon2_elixir was released along with OTP 23 link. As far as I can tell no images of Elixir with OTP 23 are released yet.

1.6.6 failing to compile :getext

Hello,

With the recent changes on the elixir:1.6.6.
I am getting error failing to compile :getext
with error look like below -

==> gettext
Compiling 1 file (.erl)
/usr/local/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:59: illegal pattern
/usr/local/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:60: variable 'Error' is unbound
/usr/local/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:60: variable 'Stacktrace' is unbound
/usr/local/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:63: variable 'Stacktrace' unsafe in 'try' (line 60)
/usr/local/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:64: variable 'Error' unsafe in 'try' (line 60)
/usr/local/lib/erlang/lib/parsetools-2.1.7/include/yeccpre.hrl:64: variable 'Stacktrace' unsafe in 'try' (line 60)
could not compile dependency :gettext, "mix compile" failed. You can recompile this dependency with "mix deps.compile gettext", update it with "mix deps.update gettext" or clean it with "mix deps.clean gettext"

Thank you for looking into this error.

mix local.rebar --force httpc error

Hello,

I'm trying to run my elixir application with elixir-1.4 base image. But I'm getting following error:

$ mix local.rebar --force
* creating /root/.mix/rebar

15:52:33.092 [error] GenServer #PID<0.135.0> terminating
** (stop) normal
    (inets) httpc_handler.erl:1676: :httpc_handler.update_session/4
    (inets) httpc_handler.erl:1316: :httpc_handler.maybe_make_session_available/2
    (inets) httpc_handler.erl:1307: :httpc_handler.answer_request/3
    (inets) httpc_handler.erl:371: :httpc_handler.terminate/2
    (stdlib) gen_server.erl:629: :gen_server.try_terminate/3
    (stdlib) gen_server.erl:795: :gen_server.terminate/7
    (stdlib) proc_lib.erl:247: :proc_lib.init_p_do_apply/3
Last message: {:ssl, {:sslsocket, {:gen_tcp, #Port<0.4870>, :tls_connection, :undefined}, #PID<0.136.0>}, "HTTP/1.1 200 OK\r\nx-amz-id-2: QcFzHmTb0kHmmU+Ev6Apxx5QA1KtgoxIH5/vgi6C26A0WTCc+TEZwJ/cnGfiQ7Un2vkrU4OU/gQ=\r\nx-amz-request-id: 4DC01FBDC05A747A\r\nx-amz-replication-status: COMPLETED\r\nLast-Modified: Mon, 08 May 2017 12:35:20 GMT\r\nETag: \"034e39a16f5026562499bd0848d14eff\"\r\nCache-Control: public, max-age=604800\r\nx-amz-meta-surrogate-key: installs\r\nx-amz-version-id: _PqAeBBOvSlcxbRraFEd18ofBaqWJyCR\r\nContent-Type: binary/octet-stream\r\nServer: AmazonS3\r\nVia: 1.1 varnish\r\nFastly-Debug-Digest: 864530c58fa2f5e6f7b455ba1b8a8fd668c94f688c98b6cdc85319515ff6f6b1\r\nContent-Length: 350\r\nAccept-Ranges: bytes\r\nDate: Mon, 26 Jun 2017 15:52:10 GMT\r\nVia: 1.1 varnish\r\nAge: 360126\r\nConnection: keep-alive\r\nX-Served-By: cache-iad2143-IAD, cache-ams4125-AMS\r\nX-Cache: HIT, HIT\r\nX-Cache-Hits: 1, 1\r\nX-Timer: S1498492331.509652,VS0,VE6\r\n\r\nhfGB2dwLVri/QWfHA1wy9bkOnV6jaMG+P5Fku1K7aShGh65+sY1V7+ADIva+nf/o\nAOVZS7+1YW0vanQj+mwJsLMRvjLmPvcRMaqaal7AkT81G5GNy6ExXLMZ1n3Yak6L\nl0dRVI6t/faBgHlv7x2baIy8G/8O2j4XCiYE8n7zL0QnpzZz7Z2YybCgoaYk/oHT\nAzy7Mp8Sy8ugtVjs2nNDVGHZHMhrpHri1R9FxLLRAbbaxCTUF/PXLvYBBBpxSLxJ\nBUbw8RH8u61LkftXsHphA3JCMnXKMYybcpuMA7WOyIpZoqLcM5cCrrCZVLW8DhXN\nAH3LXp27yb4Q+oc8QESFPw==\n"}
State: {:state, {:request, #Reference<0.0.1.450>, #PID<0.73.0>, 0, :https, {'repo.hex.pm', 443}, '/installs/rebar3-1.x.csv.signed', [], :get, {:http_request_h, :undefined, 'keep-alive', :undefined, :undefined, :undefined, :undefined, :undefined, :undefined, :undefined, :undefined, :undefined, :undefined, :undefined, :undefined, :undefined, :undefined, 'repo.hex.pm', :undefined, :undefined, :undefined, :undefined, :undefined, :undefined, :undefined, :undefined, :undefined, [], 'Mix/1.4.4', :undefined, :undefined, :undefined, '0', :undefined, :undefined, :undefined, :undefined, :undefined, ...}, {[], []}, {:http_options, 'HTTP/1.1', :infinity, true, {:essl, []}, :undefined, true, :infinity, false}, 'https://repo.hex.pm/installs/rebar3-1.x.csv.signed', [], :none, [], 1498492352993, :undefined, :undefined, false}, {:session, {{'repo.hex.pm', 443}, #PID<0.135.0>}, false, :https, {:sslsocket, {:gen_tcp, #Port<0.4870>, :tls_connection, :undefined}, #PID<0.136.0>}, {:essl, []}, 1, :keep_alive, false}, :undefined, :undefined, :undefined, {:httpc_response, :parse, [:nolimit, true]}, {[], []}, {[], []}, :new, [], :nolimit, :nolimit, {:options, {:undefined, []}, {:undefined, []}, 0, 2, 5, 120000, 2, :disabled, false, :inet, :default, :default, []}, {:timers, [], :undefined}, :httpc_mix, :inactive}
* creating /root/.mix/rebar3

During execution of mix local.rebar --force. Any ideas how to fix this?

Thank you.

Can't install rabbit_common on Elixir

Hey,

Thanks for the official images, super excited about them, especially the alpine variants! I like that you keep the alpine image as small as possible, as it's normally trivial to install additional dependencies.

Unfortunately there is an issue installing rabbit_common, which is caused by OTP20 no longer including some libraries. It's described here:
rabbitmq/rabbitmq-common#27

The suggested fix - installing erlang-src fails, as it is not a package that's available from alpine. Maybe @msaraiva can help here, too.

I've illustrated the issue in a small project:
https://github.com/invrs/rabbit_common_problem/blob/master/Dockerfile

Thanks,
Michael

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.