File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
- # Copyright (c) 2018, 2019 Oracle and/or its affiliates. All rights reserved.
1
+ # Copyright (c) 2018, 2020 Oracle and/or its affiliates. All rights reserved.
2
2
3
3
FROM ubuntu:bionic as build
4
4
@@ -39,12 +39,15 @@ FROM tomcat:9-jre8
39
39
LABEL maintainer=
"[email protected] "
40
40
41
41
# install dependencies and Python tools
42
- RUN apt-get update && apt-get install -y git subversion mercurial unzip inotify-tools python3 python3-pip python3-venv
42
+ RUN apt-get update && \
43
+ apt-get install -y git subversion mercurial unzip inotify-tools python3 python3-pip python3-venv
43
44
44
45
# compile and install universal-ctags
45
- RUN apt-get install -y pkg-config autoconf build-essential && git clone https://github.com/universal-ctags/ctags /root/ctags && \
46
+ RUN apt-get install -y pkg-config autoconf build-essential && \
47
+ git clone https://github.com/universal-ctags/ctags /root/ctags && \
46
48
cd /root/ctags && ./autogen.sh && ./configure && make && make install && \
47
- apt-get remove -y autoconf build-essential && apt-get -y autoremove && apt-get -y autoclean && \
49
+ apt-get remove -y autoconf build-essential && \
50
+ apt-get -y autoremove && apt-get -y autoclean && \
48
51
cd /root && rm -rf /root/ctags
49
52
50
53
# prepare OpenGrok binaries and directories
You can’t perform that action at this time.
0 commit comments