Skip to content

Commit

Permalink
Docker: updated runtime.x86_64.dockerfile sample
Browse files Browse the repository at this point in the history
  • Loading branch information
storypku committed Mar 16, 2021
1 parent 3e33348 commit 5069285
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docker/build/runtime.x86_64.dockerfile.sample
Original file line number Diff line number Diff line change
Expand Up @@ -64,12 +64,12 @@ COPY --from=devel /etc/profile.d/apollo.sh /etc/profile.d/apollo.sh
COPY --from=devel /etc/ld.so.conf.d/apollo.conf /etc/ld.so.conf.d/apollo.conf

COPY syspkgs.txt /opt/apollo/syspkgs.txt
RUN apt-get -y update && \
apt-get -y install --no-install-recommends \
RUN apt-get -y update \
&& apt-get -y install --no-install-recommends \
silversearcher-ag \
$(cat /opt/apollo/syspkgs.txt) && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
$(cat /opt/apollo/syspkgs.txt) \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

# Restore
RUN bash /opt/apollo/installers/install_geo_adjustment.sh us
Expand Down

0 comments on commit 5069285

Please sign in to comment.