Skip to content

Commit d016a90

Browse files
author
Vladimir Kotal
committed
wrap lines
1 parent 62e9979 commit d016a90

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

Dockerfile

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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.
22

33
FROM ubuntu:bionic as build
44

@@ -39,12 +39,15 @@ FROM tomcat:9-jre8
3939
LABEL maintainer="[email protected]"
4040

4141
# 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
4344

4445
# 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 && \
4648
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 && \
4851
cd /root && rm -rf /root/ctags
4952

5053
# prepare OpenGrok binaries and directories

0 commit comments

Comments
 (0)