Skip to content

Commit

Permalink
#51 use --disable-march-tune-native for sassc building
Browse files Browse the repository at this point in the history
  • Loading branch information
CAMOBAP authored and ronaldtse committed Feb 23, 2020
1 parent 004b207 commit 5f49fda
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile.ruby.in
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN gem install bundler
# install metanorma toolchain
RUN mkdir -p /setup
COPY ${METANORMA_IMAGE_NAME}/Gemfile /setup/Gemfile
RUN cd /setup && bundle install
RUN cd /setup && bundle config --local build.sassc --disable-march-tune-native && bundle install --verbose

# export java executable path
ENV JAVA_HOME /usr/lib/jvm/default-java
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.ubuntu.in
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ RUN gem install bundler
# install metanorma toolchain
RUN mkdir -p /setup
COPY ${METANORMA_IMAGE_NAME}/Gemfile /setup/Gemfile
RUN cd /setup && bundle install
RUN cd /setup && bundle config --local build.sassc --disable-march-tune-native && bundle install --verbose

# cleanup and set base entrypoint
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit 5f49fda

Please sign in to comment.