You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM governmentpaas/cf-cli@sha256:524554e6bcd9e77e9f3886de0ee2c1307976361a41a009b4690c709afd52812e
WORKDIR /usr/src/app
COPY Gemfile Gemfile.lock .ruby-version ./
RUN apk --update add g++ musl-dev make nodejs nodejs-npm
RUN bundle install
COPY . .
RUN if ping -c 2 google.co.uk ; then wget https://s3.eu-west-2.amazonaws.com/govwifi-production-product-page-data/organisations.yml -O data/organisations.yml \
&& wget https://s3.eu-west-2.amazonaws.com/govwifi-production-product-page-data/domains.yml -O data/domains.yml ; fi