Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

downstream builds sass from source; rh-manifest.txt #523

Merged
Show file tree
Hide file tree
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
5 changes: 3 additions & 2 deletions Dockerfile.product
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ RUN tar fx yarn-offline.tar
# bootstrap yarn so we can install and run the other tools.
RUN container-entrypoint npm install ./npm-packages-offline-cache/yarn-1.9.4.tgz

# prevent download of chromedriver and sass binary as part of module installs
# prevent download of chromedriver, sass binary, and node headers as part of module installs
ENV CHROMEDRIVER_FILEPATH=$HOME/fake_chromedriver.zip \
SASS_BINARY_PATH=$HOME/linux-x64-57_binding.node
SKIP_SASS_BINARY_DOWNLOAD_FOR_CI=true \
NPM_CONFIG_TARBALL=$HOME/node-v8.9.4-headers.tar.gz

# run the build
RUN container-entrypoint ./build-frontend.sh
Expand Down
Loading