File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -57,10 +57,14 @@ RUN echo 'deb https://package.perforce.com/apt/ubuntu jammy release' > /etc/apt/
57
57
# install dependencies and Python tools
58
58
# hadolint ignore=DL3008,DL3009
59
59
RUN apt-get update && \
60
- apt-get install --no-install-recommends -y git subversion mercurial cvs cssc bzr rcs rcs-blame helix-p4d \
60
+ apt-get install --no-install-recommends -y git subversion mercurial cvs cssc bzr rcs rcs-blame \
61
61
unzip python3 python3-pip \
62
62
python3-venv python3-setuptools openssh-client libyaml-dev
63
63
64
+ RUN architecture=$(uname -m) && if [[ "$architecture" == "aarch64" ]]; then \
65
+ echo "aarch64: do not install helix-p4d." ; else \
66
+ apt-get install --no-install-recommends -y helix-p4d; fi
67
+
64
68
# compile and install universal-ctags
65
69
# hadolint ignore=DL3003,DL3008
66
70
RUN apt-get install --no-install-recommends -y pkg-config automake build-essential && \
You can’t perform that action at this time.
0 commit comments