Suppress apt-get update return code

master
Ken Subratie 2024-01-02 12:45:07 -05:00
parent 885efa24c1
commit 993afe7de5
1 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,8 @@ RUN apt-get update && \
FROM base AS evio-base
ARG DEBIAN_FRONTEND=noninteractive
ENV TZ=Etc/UTC
RUN apt-get update && \
apt-get install -y \
RUN apt-get update || true
RUN apt-get install -y \
openvswitch-switch \
iputils-ping \
fping \