Skip to content
Snippets Groups Projects
Commit d043851d authored by John Harris's avatar John Harris
Browse files

style: Merge multiple consecutive RUN

parent 6c39ab85
No related branches found
No related tags found
No related merge requests found
......@@ -5,8 +5,8 @@ COPY /app/bootstrap*sh /app/
RUN chmod +x /app/bootstrap*sh
# Install OS packages required for the gem build environment.
RUN /app/bootstrap-apt-upgrade.sh
RUN apt-get install -y --no-install-recommends \
RUN /app/bootstrap-apt-upgrade.sh && \
apt-get install -y --no-install-recommends \
build-essential \
cmake \
curl \
......@@ -18,8 +18,8 @@ RUN apt-get install -y --no-install-recommends \
pkg-config \
ruby-dev \
shared-mime-info \
telnet
RUN /app/bootstrap-apt-clean.sh
telnet && \
/app/bootstrap-apt-clean.sh
# Prepare bundle for the gem build environment.
RUN /app/bootstrap-app-dir.sh
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment