2020-12-24 02:00:33 +03:00
|
|
|
FROM sbidprod.azurecr.io/quinault:latest
|
|
|
|
ARG CNMS_BUILD_DIR
|
|
|
|
|
2020-03-19 00:02:31 +03:00
|
|
|
RUN apt -y update
|
|
|
|
RUN apt-get -y upgrade
|
|
|
|
RUN apt install -y ebtables
|
|
|
|
RUN apt install -y net-tools
|
2020-12-24 02:00:33 +03:00
|
|
|
COPY $CNMS_BUILD_DIR/azure-cnms /usr/bin/azure-cnms
|
2020-04-01 23:21:47 +03:00
|
|
|
RUN chmod +x /usr/bin/azure-cnms
|
|
|
|
CMD ["/usr/bin/azure-cnms"]
|