Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
fredericfran-gds committed Nov 10, 2020
1 parent 20ff043 commit 0bddae8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ FROM ruby:2.7.2
RUN apt-get update -qq && apt-get upgrade -y && apt-get install -y build-essential nodejs && apt-get clean
RUN gem install foreman

# Install chrome and its dependencies
RUN apt-get update -qq && apt-get install -y libxss1 libappindicator1 libindicator7
RUN wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb 2>&1 && \
apt install -y ./google-chrome*.deb && \
rm ./google-chrome*.deb

ENV GOVUK_APP_NAME static
ENV RAILS_ENV development
ENV REDIS_URL redis://redis
Expand Down

0 comments on commit 0bddae8

Please sign in to comment.