@@ -59,8 +59,8 @@ RUN PATH="$HOME/.cargo/bin:$PATH" make conjure
5959
6060COPY go.* /opt/conjure/
6161COPY cmd/ /opt/conjure/cmd
62- COPY application/ /opt/conjure/application
6362COPY pkg/ /opt/conjure/pkg
63+ COPY proto/ /opt/conjure/proto
6464
6565RUN PATH="$HOME/.go/bin/:$PATH" make app
6666RUN PATH="$HOME/.go/bin/:$PATH" make registration-server
@@ -91,7 +91,7 @@ FROM base_pfring as conjure_det
9191COPY sysconfig/conjure.conf /opt/conjure/sysconfig
9292COPY scripts/ /opt/conjure/scripts
9393
94- RUN apt update && apt install -yq libzmq3-dev
94+ RUN apt update && apt install -yq libzmq3-dev iproute2
9595COPY --from=dev_img /opt/conjure/bin/conjure /opt/conjure/bin/
9696
9797# ------------------------------------------------------------------------------
@@ -102,7 +102,7 @@ FROM ubuntu:20.04 as conjure_app
102102COPY sysconfig/conjure.conf /opt/conjure/sysconfig/
103103COPY scripts/ /opt/conjure/scripts
104104
105- RUN apt update && apt install -yq libzmq3-dev
105+ RUN apt update && apt install -yq libzmq3-dev iproute2
106106COPY --from=dev_img /opt/conjure/bin/application /opt/conjure/bin/
107107
108108# ------------------------------------------------------------------------------
@@ -113,7 +113,7 @@ FROM ubuntu:20.04 as conjure_reg
113113COPY sysconfig/conjure.conf /opt/conjure/sysconfig/
114114COPY scripts/ /opt/conjure/scripts/
115115
116- RUN apt update && apt install -yq libzmq3-dev
116+ RUN apt update && apt install -yq libzmq3-dev iproute2
117117COPY --from=dev_img /opt/conjure/bin/registration-server /opt/conjure/bin/
118118
119119# ------------------------------------------------------------------------------
@@ -124,7 +124,7 @@ FROM ubuntu:20.04 as conjure_sim
124124COPY sysconfig/conjure.conf /opt/conjure/sysconfig/
125125COPY scripts/ /opt/conjure/scripts/
126126
127- RUN apt update && apt install -yq libzmq3-dev
127+ RUN apt update && apt install -yq libzmq3-dev iproute2
128128COPY --from=dev_img /opt/conjure/bin/conjure-sim /opt/conjure/bin/conjure
129129COPY --from=dev_img /opt/conjure/bin/registration-server /opt/conjure/bin/
130130
@@ -136,7 +136,7 @@ FROM base_pfring as conjure
136136COPY sysconfig/conjure.conf /opt/conjure/sysconfig/
137137COPY scripts/ /opt/conjure/scripts/
138138
139- RUN apt update && apt install -yq libzmq3-dev
139+ RUN apt update && apt install -yq libzmq3-dev iproute2
140140COPY --from=dev_img /opt/conjure/bin/ /opt/conjure/bin/
141141
142142# ENTRYPOINT /bin/bash
0 commit comments