diff --git a/Dockerfile b/Dockerfile index 27905a562..158bf7212 100644 --- a/Dockerfile +++ b/Dockerfile @@ -42,7 +42,7 @@ RUN gem install bundler RUN bundle install --full-index # Install Chromium and ChromeDriver for E2E integration tests -RUN apt-get update -qq && apt-get install -y chromium-browser +RUN apt-get update -qq && apt-get install -y chromium RUN wget -N http://chromedriver.storage.googleapis.com/2.37/chromedriver_linux64.zip RUN unzip chromedriver_linux64.zip RUN chmod +x chromedriver @@ -55,5 +55,5 @@ COPY . . # Define the script we want run once the container boots # Use the "exec" form of CMD so our script shuts down gracefully on SIGTERM (i.e. `docker stop`) -#CMD [ "config/containers/app_cmd.sh" ] +# CMD [ "config/containers/app_cmd.sh" ] CMD ["bundle", "exec", "rails", "server", "-b", "0.0.0.0"]