FROM gitpod/workspace-full USER gitpod RUN brew install asdf RUN asdf plugin add erlang && \ asdf plugin add elixir && \ asdf plugin add postgres # install everything in .tool-versions RUN asdf install RUN echo 'export PATH=$PATH:/$HOME/.asdf/shims' >> .bashrc # Success. You can now start the database server using: # /home/gitpod/.asdf/installs/postgres/11.4/bin/pg_ctl -D /home/gitpod/.asdf/installs/postgres/11.4/data -l logfile start RUN mix local.hex --force && \ mix local.rebar --force