Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN apt-get install -y apt-utils \
vim nano git

# Force nokogiri gem not to compile libxml2, it takes too long
ENV NOKOGIRI_USE_SYSTEM_LIBRARIES 1
ENV NOKOGIRI_USE_SYSTEM_LIBRARIES=1

# Install thor and rspec globally so we can test the gem without bundle exec
RUN gem install thor rspec --no-document
Expand All @@ -31,3 +31,5 @@ RUN gem build sitediff.gemspec && gem install sitediff --no-document

# Build locally
RUN bundle install

ENV PATH="/sitediff/bin:${PATH}"