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 FROM base AS evio-base
ARG DEBIAN_FRONTEND=noninteractive ARG DEBIAN_FRONTEND=noninteractive
ENV TZ=Etc/UTC ENV TZ=Etc/UTC
RUN apt-get update && \ RUN apt-get update || true
apt-get install -y \ RUN apt-get install -y \
openvswitch-switch \ openvswitch-switch \
iputils-ping \ iputils-ping \
fping \ fping \