From 2578a4761791a7542885e00561a2d735707f38f7 Mon Sep 17 00:00:00 2001 From: Oliver Gould Date: Tue, 1 May 2018 14:56:24 -0700 Subject: [PATCH] proxy: Do not build Arbitrary types in Docker (#889) When the proxy's Dockerfile ran tests, it was necessary to build Arbitrary types for quickchecking protobuf types. Now that tests have been disabled, this optional set of dependencies is no longer required. Relates to #882. --- proxy/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxy/Dockerfile b/proxy/Dockerfile index ee288ad61..5eff41d94 100644 --- a/proxy/Dockerfile +++ b/proxy/Dockerfile @@ -42,8 +42,8 @@ COPY proto/proxy proto/proxy COPY proto/common proto/common COPY proxy/controller-grpc proxy/controller-grpc RUN if [ -n "$PROXY_UNOPTIMIZED" ]; \ - then cargo build -p conduit-proxy-controller-grpc --features=arbitrary --frozen ; \ - else cargo build -p conduit-proxy-controller-grpc --features=arbitrary --frozen --release ; \ + then cargo build -p conduit-proxy-controller-grpc --frozen ; \ + else cargo build -p conduit-proxy-controller-grpc --frozen --release ; \ fi # Build the proxy binary using pre-built dependencies.