-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathDockerfile
51 lines (41 loc) · 1.19 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
FROM ubuntu:20.04
ENV ELIXIR_VERSION=1.13.0-otp-24
# so TZ Info doesn't hault the build
ENV DEBIAN_FRONTEND="noninteractive"
# get tools needed to build required tools
RUN apt-get update && apt-get install -yq \
build-essential \
wget \
curl \
zip \
openssh-client \
postgresql \
libnss3-dev \
libxss-dev \
libasound2-dev \
git \
jq
# setup erlang apt repo
RUN wget https://packages.erlang-solutions.com/erlang-solutions_2.0_all.deb; \
dpkg -i --force-depends erlang-solutions_2.0_all.deb
# setup nodejs apt repo
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash -
# install nodejs and erlang
RUN apt-get update && apt-get install -yq \
nodejs \
esl-erlang
RUN sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen && \
locale-gen
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
# install elixir
RUN wget https://repo.hex.pm/builds/elixir/v$ELIXIR_VERSION.zip && \
mkdir -p /usr/local/elixir && \
unzip -d /usr/local/elixir v$ELIXIR_VERSION.zip
ENV PATH=/usr/local/elixir/bin:$PATH
RUN mix local.hex --force; \
mix local.rebar --force
# update npm
RUN npm install -g npm
RUN npm install -g yarn