Revert Dockerfile to use latest version of image

As it is built locally within one step and never pulled between steps,
this should not be a problem
This commit is contained in:
Daniel Schädler 2019-09-27 11:09:19 +02:00
parent 7f2dc1f1c1
commit 5e559e1522
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
# Build production container locally first with following tag
FROM turniere-backend/production:local
FROM registry.gitlab.com/turniere/turniere-backend/production
WORKDIR /app
RUN bundle install --deployment --with development
ENV RAILS_ENV development

View File

@ -1,5 +1,5 @@
# Build development container locally first with following tag
FROM turniere-backend/development:local
FROM registry.gitlab.com/turniere/turniere-backend/development
WORKDIR /app
RUN bundle install --deployment --with test
ENV RAILS_ENV test