From ff440f7fdf266bbf4b4654c3eeaad74800cabd4b Mon Sep 17 00:00:00 2001 From: Carl Kittelberger Date: Mon, 17 Apr 2017 23:33:47 +0200 Subject: [PATCH] Fix entrypoint binary name. For non-Windows OS the binary is always named `gmad_${os}` instead of just `gmad` as it is on Windows according to the project's premake4.lua script. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 921b692..39df824 100644 --- a/Dockerfile +++ b/Dockerfile @@ -50,4 +50,4 @@ RUN \ /var/lib/apt/lists/* \ /usr/src/* -ENTRYPOINT ["gmad"] +ENTRYPOINT ["gmad_linux"]