-
Notifications
You must be signed in to change notification settings - Fork 14
/
Dockerfile.impala
49 lines (32 loc) · 923 Bytes
/
Dockerfile.impala
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
FROM ubuntu:18.04
COPY tools/build_cleanup /tools/
ENV TZ=Europe/Budapest
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
COPY tools/install_basics /tools/
RUN /tools/install_basics
COPY tools/install_java_zulu /tools/
RUN /tools/install_java_zulu
#COPY tools/install_xmlstarlet /tools/
#RUN /tools/install_xmlstarlet
COPY tools/install_toolbox /tools/
RUN /tools/install_toolbox
COPY tools/i_sort /tools/
RUN /tools/i_sort
COPY etc /etc
COPY bin /bin
COPY tools/install_conf /tools/
RUN /tools/install_conf
COPY tools/install_x2go /tools/
RUN /tools/install_x2go
USER dev
WORKDIR /home/dev
ENV LANG en_US.UTF-8
ENV LANGUAGE en_US:en
ENV LC_ALL en_US.UTF-8
COPY tools/impala_bootstrap /tools/
RUN /tools/impala_bootstrap
COPY tools/iii /tools/
RUN /tools/iii
ENV IMPALA_TOOLCHAIN /work/toolchain.impala
COPY tools/entrypoint.impala /.entrypoint
ENTRYPOINT ["/.entrypoint"]