forked from sbt/docker-sbt
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
52 lines (42 loc) · 1.27 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
52
#
# Scala, sbt, node, redoc, awscli, python Dockerfile
#
# https://github.com/davidmargolin/Scala-sbt-awscli-redoc-cli-node-Dockerfile
#
# Pull base image
FROM openjdk:8u181
# Define working directory
WORKDIR /root
# Env variables
ENV SCALA_VERSION 2.12.6
ENV SBT_VERSION 1.2.3
# Scala expects this file
RUN touch /usr/lib/jvm/java-8-openjdk-amd64/release
# Install Scala
## Piping curl directly in tar
RUN \
curl -fsL https://downloads.typesafe.com/scala/$SCALA_VERSION/scala-$SCALA_VERSION.tgz | tar xfz - -C /root/ && \
export PATH=/root/scala-$SCALA_VERSION/bin:$PATH
# Install sbt
RUN \
curl -L -o sbt-$SBT_VERSION.deb https://dl.bintray.com/sbt/debian/sbt-$SBT_VERSION.deb && \
dpkg -i sbt-$SBT_VERSION.deb && \
rm sbt-$SBT_VERSION.deb && \
apt-get update && \
apt-get install sbt && \
sbt sbtVersion
# Install Node
RUN \
curl -sL https://deb.nodesource.com/setup_10.x | bash - && \
apt-get update && \
apt-get install nodejs -y && \
apt-get install npm -y && \
apt-get install build-essential -y
# Install Redoc
RUN npm install -g redoc-cli
# Install Python and AWS
RUN \
wget https://bootstrap.pypa.io/get-pip.py && python get-pip.py --user && \
~/.local/bin/pip install --upgrade awscli && \
export PATH=$PATH:/root/.local/bin/aws
CMD ["/bin/bash"]