Skip to content

Instantly share code, notes, and snippets.

@tomodutch
Created June 30, 2018 04:21
Show Gist options
  • Save tomodutch/8e088213334a8c9249e9b7b97d9dd085 to your computer and use it in GitHub Desktop.
Save tomodutch/8e088213334a8c9249e9b7b97d9dd085 to your computer and use it in GitHub Desktop.
Dockerfile for ubuntu-bionic with elixir
FROM ubuntu:bionic
RUN apt-get update -yqq && apt-get install wget gnupg -y
RUN wget https://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && dpkg -i erlang-solutions_1.0_all.deb && apt-get update -yqq
RUN apt-get install esl-erlang elixir -y
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment