This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ready do | |
# Insert fingerprinted asset paths into _headers for Netlify. | |
proxy "/_headers", "/headers.txt", | |
layout: false, | |
locals: { | |
# these variables will be different for you. Add at will! | |
all_css: sitemap.find_resource_by_path('css/all.css'), | |
vendor_js: sitemap.find_resource_by_path('js/vendor.js'), | |
main_js: sitemap.find_resource_by_path('js/main.js') | |
}, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ruby:2.5.1-slim | |
MAINTAINER Space Babies <[email protected]> | |
LABEL description="Continuous Integration of our Rails apps" | |
# Install dependencies: | |
# - libxml2, zlib1g-dev, liblzma-dev: nokogiri and friends | |
# - libpq-dev: needed to build `pg` | |
# - libmysqlclient-dev: needed to build `mysql2` | |
RUN apt-get update --quiet && apt-get install --no-install-recommends --quiet --yes \ |
OlderNewer