Merge branch 'faster_qa_auto_devops' into 'master'

Use Dockerfile flow for QA Auto DevOps

See merge request gitlab-org/gitlab-ce!28648
This commit is contained in:
Dan Davison 2019-05-31 04:58:51 +00:00
commit d972a60a20

View file

@ -0,0 +1,9 @@
FROM ruby:2.6.3-alpine
ADD ./ /app/
WORKDIR /app
ENV RACK_ENV production
ENV PORT 5000
EXPOSE 5000
RUN bundle install
CMD ["bundle","exec", "rackup", "-p", "5000"]