Skip to content

Commit

Permalink
[dist] Fix path to Gemfile
Browse files Browse the repository at this point in the history
We recently (8576fe1) moved the dockerfiles to different
locations. This change broke the relative path to the Gemfile in our
Dockerfile.frontend-base recipe.
This commit is fixing it.
  • Loading branch information
bgeuken committed Feb 13, 2018
1 parent e9decd7 commit d9ca93a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/docker-files/Dockerfile.frontend-base
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ RUN /root/bin/docker-bootstrap.sh frontend
# Install other requirements
RUN npm install -g jshint

ADD Gemfile /obs/src/api/Gemfile
ADD Gemfile.lock /obs/src/api/Gemfile.lock
ADD ../Gemfile /obs/src/api/Gemfile
ADD ../Gemfile.lock /obs/src/api/Gemfile.lock
RUN chown -R frontend /obs/src/api

# Ensure there are ruby, gem and irb commands without ruby suffix
Expand Down

0 comments on commit d9ca93a

Please sign in to comment.