BigW Consortium Gitlab

Dockerfile 397 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
FROM ruby:2.3
LABEL maintainer "Grzegorz Bizon <grzegorz@gitlab.com>"

RUN sed -i "s/httpredir.debian.org/ftp.us.debian.org/" /etc/apt/sources.list && \
    apt-get update && apt-get install -y --force-yes \
      libqt5webkit5-dev qt5-qmake qt5-default build-essential xvfb git && \
    apt-get clean

WORKDIR /home/qa

11 12
COPY ./Gemfile* ./

13 14
RUN bundle install

15 16
COPY ./ ./

17
ENTRYPOINT ["bin/test"]