Add curl to ONOS docker image for use with healthchecks.

Change-Id: I78e482a76455ae40c0748a29d48e3e24c6de57e5
This commit is contained in:
Jonathan Hart 2019-12-02 13:19:35 -08:00 committed by Carmelo Cascone
parent cb49e7d17b
commit 91f3cb6179

View File

@ -61,6 +61,9 @@ LABEL org.label-schema.name="ONOS" \
org.label-schema.schema-version="1.0" \
maintainer="onos-dev@onosproject.org"
RUN apt-get update && apt-get install -y curl && \
rm -rf /var/lib/apt/lists/*
# Install ONOS in /root/onos
COPY --from=builder /output/ /root/onos/
WORKDIR /root/onos