-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathDockerfile
48 lines (32 loc) · 813 Bytes
/
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
#FROM debian:buster
FROM debian:bullseye
COPY tools/build_cleanup /tools/
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 tools/cdpcli /tools/
#RUN /tools/cdpcli
COPY etc /etc
COPY bin /bin
COPY tools/iii /tools/
RUN /tools/iii
COPY tools/install_conf /tools/
RUN /tools/install_conf
COPY tools/install_x2go /tools/
RUN /tools/install_x2go
COPY tools/y /tools/
RUN /tools/y
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/docker_entrypoint /.entrypoint
ENTRYPOINT ["/.entrypoint"]