From 50fdd0af294a889dcd78ecb12f0e5cd6e96c9cf6 Mon Sep 17 00:00:00 2001 From: thosakwe Date: Sat, 14 Jan 2017 19:42:06 -0500 Subject: [PATCH] bin --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index ccba8427..c550e4e5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,12 +21,12 @@ ADD web/ web/ ADD pubspec.yaml pubspec.yaml # Install dependencies, pre-build -RUN pub get -RUN dart tool/build.dart -RUN pub build +RUN /usr/lib/dart/bin/pub get +RUN /usr/lib/dart/bin/dart tool/build.dart +RUN /usr/lib/dart/bin/pub build # Set environment, start multi-server :) ENV ANGEL_ENV=production EXPOSE 3000 -ENTRYPOINT ["dart"] +ENTRYPOINT ["/usr/lib/dart/bin/dart"] CMD ["bin/multi_server.dart"] \ No newline at end of file