aboutsummaryrefslogtreecommitdiffhomepage
path: root/tools/dockerfile
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2015-03-09 17:28:41 -0700
committerGravatar Jan Tattermusch <jtattermusch@google.com>2015-03-09 17:28:41 -0700
commit01b851f87cd222080b7c59198b6adff733a121ac (patch)
treedb00c60f067773a5034f0975f98611fc9347f26e /tools/dockerfile
parentb0829ebaf174216787c9a9557cf4a40afa2c8023 (diff)
Fixed run server command in csharp_mono dockerfile.
Diffstat (limited to 'tools/dockerfile')
-rw-r--r--tools/dockerfile/grpc_csharp_mono/Dockerfile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/dockerfile/grpc_csharp_mono/Dockerfile b/tools/dockerfile/grpc_csharp_mono/Dockerfile
index 8f86366560..703b658a23 100644
--- a/tools/dockerfile/grpc_csharp_mono/Dockerfile
+++ b/tools/dockerfile/grpc_csharp_mono/Dockerfile
@@ -51,5 +51,5 @@ ADD cacerts cacerts
# Add a service_account directory containing the auth creds file
ADD service_account service_account
-# TODO: add command to run the interop server
-CMD ["/bin/bash", "-l"]
+# Run the C# Interop Server
+CMD ["/bin/bash", "-l", "-c", "cd /var/local/git/grpc/src/csharp/Grpc.IntegrationTesting.Server/bin/Debug && mono Grpc.IntegrationTesting.Server.exe --use_tls=true --port=8070"]