dev-container/elixir/Dockerfile
James Harton c5162f80ba
Some checks reported errors
continuous-integration/drone/push Build was killed
improvement(elixir): install rebar and hex.
2023-08-25 19:04:19 +12:00

16 lines
383 B
Docker

FROM code.harton.nz/james/dev-container/base
ARG USERNAME=vscode
USER ${USERNAME}
ENV HOME=/home/${USERNAME}
RUN asdf asdf plugin add erlang
RUN asdf asdf install erlang latest
RUN asdf asdf global erlang latest
RUN asdf asdf plugin add elixir
RUN asdf asdf install elixir latest
RUN asdf asdf global elixir latest
RUN asdf mix local.rebar --force
RUN asdf mix local.hex --force