forked from crs4/Jeenk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
77 lines (70 loc) · 2.3 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
FROM ubuntu:20.04
########################################################################
# install java8 + some useful tools
########################################################################
RUN \
export DEBIAN_FRONTEND=noninteractive \
&& apt-get update -y -q \
&& apt-get install -y \
aptitude \
automake \
bash-completion \
bison \
build-essential \
curl \
cmake \
dnsutils \
elinks \
emacs-nox emacs-goodies-el \
fish \
flex \
git \
htop \
iperf3 \
iproute2 \
iputils-ping \
less \
libtool \
libopencv-dev \
mc \
nload \
nmon \
openjdk-8-jdk \
psutils \
source-highlight \
ssh \
sudo \
tmux \
vim \
wget \
&& rm -rf /var/lib/apt/lists/*
########################################################################
# install apache flink
########################################################################
ARG FLINK_VERS=1.4.2
RUN \
cd /tmp && wget -nv "https://archive.apache.org/dist/flink/flink-$FLINK_VERS/flink-$FLINK_VERS-bin-hadoop28-scala_2.11.tgz" \
&& cd /opt/ && tar xfz "/tmp/flink-$FLINK_VERS-bin-hadoop28-scala_2.11.tgz" \
&& ln -s "flink-$FLINK_VERS" flink
EXPOSE 8081
########################################################################
# install scala-related binaries
########################################################################
RUN \
curl -fL https://github.com/coursier/coursier/releases/latest/download/cs-x86_64-pc-linux.gz \
| gzip -d > cs && chmod +x cs && ./cs setup -y
########################################################################
# install apache kafka
########################################################################
ARG KAFKA_VERS=2.1.1
RUN \
cd /tmp && wget -nv "https://archive.apache.org/dist/kafka/$KAFKA_VERS/kafka_2.11-$KAFKA_VERS.tgz" \
&& cd /opt/ && tar xfz "/tmp/kafka_2.11-$KAFKA_VERS.tgz" \
&& ln -s "kafka_2.11-$KAFKA_VERS" kafka
########################################################################
# update PATH
########################################################################
RUN mkdir -p ~/.config/fish/ \
&& bash -c 'echo "set -gx PATH $PATH /opt/flink/bin /opt/kafka/bin ~/.local/share/coursier/bin" >> ~/.config/fish/config.fish'
COPY . /opt/Jeenk
WORKDIR /opt/Jeenk