From a6ef74fa128942420f696f481f2af97ed6fb1d50 Mon Sep 17 00:00:00 2001 From: Nemo Date: Fri, 1 Jun 2018 02:03:55 +0530 Subject: [PATCH] Fix entrypoint --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 959fd32..667354b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,4 +8,4 @@ RUN apk add --no-cache build-base RUN bundle install COPY . /app -ENTRYPOINT ["bundle exec rackup"] +ENTRYPOINT ["/usr/local/bin/bundle", "exec", "rackup", "-E", "production", "-p", "80"]