Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Dockerfile « auto_devops_rack « fixtures « qa « qa - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ab2795dd40aa68ed089d0e320e94b34d59cee1e (plain)
1
2
3
4
5
6
7
8
9
FROM ruby:2.6.5-alpine
ADD ./ /app/
WORKDIR /app
ENV RACK_ENV production
ENV PORT 5000
EXPOSE 5000

RUN bundle install
CMD ["bundle","exec", "rackup", "-p", "5000"]