forked from kklobe/docker-elixir-dev
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathDockerfile
More file actions
21 lines (18 loc) · 720 Bytes
/
Copy pathDockerfile
File metadata and controls
21 lines (18 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
FROM elixir:1.13-slim
MAINTAINER Mark Meeus <mark.meeus@gmail.com>
RUN apt update && \
apt upgrade -y && \
apt install curl -y && \
curl -sL https://deb.nodesource.com/setup_16.x | bash - && \
apt-get install -y nodejs
RUN export DEBIAN_FRONTEND=noninteractive && \
apt-get -qq update && \
apt-get install -y devscripts && \
rmadison elixir && \
apt-get install -y curl git locales tzdata && \
locale-gen "en_US.UTF-8" && \
export LANG=en_US.UTF-8 && \
curl -o /tmp/erlang.deb http://packages.erlang-solutions.com/erlang-solutions_1.0_all.deb && \
dpkg -i /tmp/erlang.deb && \
rm -rf /tmp/erlang.deb && \
(curl -sL https://deb.nodesource.com/setup_10.x | bash)