Created
September 6, 2018 05:55
-
-
Save miklund/3d5511daecfefb1bbccd85430b5c39ba to your computer and use it in GitHub Desktop.
2018-09-06 Static generated websites are shit
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
# Title: Static generated websites are shit | |
# Author: Mikael Lundin | |
# Date: 2018-09-06 |
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
# Create a container for blog.mikaellundin.name | |
FROM ubuntu:14.04 | |
MAINTAINER Mikael Lundin <[email protected]> | |
# Install prerequisites | |
RUN apt-get update && apt-get install -y git git-core curl zlib1g-dev libssl-dev libreadline-dev libyaml-dev libsqlite3-dev sqlite3 libxml2-dev libxslt1-dev libcurl4-openssl-dev python-software-properties libffi-dev libgdbm-dev libncurses5-dev automake libtool bison libffi-dev libgmp-dev openjdk-7-jre | |
# Setup prerequisites for nodejs installatino | |
RUN curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - | |
RUN apt-get install -y nodejs build-essential | |
# install ruby 2 | |
RUN gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3 | |
RUN curl -L https://get.rvm.io | bash -s stable | |
ENV PATH /usr/local/rvm/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin | |
RUN /bin/bash -l -c "rvm requirements" | |
RUN /bin/bash -l -c "rvm install 2.2.5" | |
RUN /bin/bash -l -c "rvm use 2.2.5 --default" | |
# Install jekyll and redcarpet | |
RUN /bin/bash -l -c "gem install jekyll jekyll-gist jekyll-sitemap mustache pygments.rb rake redcarpet s3_website --no-ri --no-rdoc" | |
RUN /bin/bash -l -c "gem install sass -v 3.4.21 --no-ri --no-rdoc" | |
# Install bower and gulp globally | |
RUN npm config set strict-ssl false | |
RUN npm config set global false | |
RUN npm config set registry="http://registry.npmjs.org/" | |
RUN npm install --global bower gulp-cli | |
# Use local copy of the project, instead of cloning it from github | |
COPY . /var/www | |
# Set current working directory | |
WORKDIR /var/www | |
# Download frontend dependencies | |
RUN bower install --config.interactive=false --allow-root | |
# Download gulp dependencies | |
RUN /bin/bash -l -c "npm install --only=dev" | |
# Build static assets, once | |
RUN /bin/bash -l -c "gulp" | |
# Install all jekyll dependencies | |
RUN /bin/bash -l -c "bundle install" | |
# Make a volume for the code | |
VOLUME /var/www | |
# open port 4000 for http | |
EXPOSE 4000 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment