forked from envygeeks/jekyll-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add latest 3.4 and 3.5 and build everything from 3+
- Loading branch information
Showing
3 changed files
with
136 additions
and
30 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,27 +1,42 @@ | ||
maintainer: Jordon Bedwell <[email protected]> | ||
user: jekyll | ||
tags: | ||
3.3.0: stable | ||
3.3.1: stable | ||
3.4.0: stable | ||
3.4.1: stable | ||
3.4.2: stable | ||
3.5.0: stable | ||
3.4.4: stable | ||
3.4.3: stable | ||
3.4.2: stable | ||
3.4.1: stable | ||
3.4.0: stable | ||
3.3.1: stable | ||
3.3.0: stable | ||
3.2.1: stable | ||
3.2.0: stable | ||
3.1.6: stable | ||
3.1.5: stable | ||
3.1.4: stable | ||
3.1.3: stable | ||
3.1.2: stable | ||
3.1.0: stable | ||
3.0.5: stable | ||
3.0.4: stable | ||
3.0.3: stable | ||
3.0.2: stable | ||
3.0.1: stable | ||
3.0.0: stable | ||
pages: pages | ||
aliases: | ||
latest: 3.4.3 | ||
stable: 3.4.3 | ||
3.4: 3.4.3 | ||
3: 3.4.3 | ||
latest: 3.5.0 | ||
stable: 3.5.0 | ||
3.5: 3.5.0 | ||
3.4: 3.4.4 | ||
3.3: 3.3.1 | ||
3.2: 3.2.1 | ||
3.1: 3.1.6 | ||
3.0: 3.0.5 | ||
3: 3.5.0 | ||
releases: | ||
tag: | ||
pages: 3.3.1 | ||
3.3.0: 3.3.0 | ||
3.3.1: 3.3.1 | ||
3.4.0: 3.4.0 | ||
3.4.1: 3.4.1 | ||
3.4.2: 3.4.2 | ||
3.4.3: 3.4.3 | ||
pages: 3.4.3 | ||
gems: | ||
all: &gems | ||
- html-proofer | ||
|
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,11 @@ | ||
FROM envygeeks/alpine | ||
LABEL maintainer "Jekyll Core <[email protected]>" | ||
LABEL maintainer "Jordon Bedwell <[email protected]>" | ||
LABEL jekyll.version "<%= @meta.release?? @meta.release : @meta.tag %>" | ||
LABEL jekyll.tag "<%= @meta.tag %>" | ||
COPY copy/ / | ||
ENV LANGUAGE=en_US | ||
ENV LANG=en_US.UTF-8 | ||
ENV JEKYLL_VERSION=<%= @meta.release?? @meta.release : @meta.tag %> | ||
ENV JEKYLL_ENV=development | ||
ENV LC_ALL=en_US | ||
<% if @meta.env? %> | ||
|
@@ -20,7 +23,7 @@ RUN apk --update add zlib-dev build-base libxml2-dev libxslt-dev readline-dev \ | |
RUN apk --update add <%= @meta.packages %> | ||
<% end %> | ||
|
||
RUN gem install --no-ri --no-rdoc jekyll -v<%= @meta.release %> | ||
RUN gem install --no-ri --no-rdoc jekyll -v<%= @meta.release?? @meta.release : @meta.tag %> | ||
RUN addgroup -Sg 1000 jekyll && adduser -Su 1000 -g 1000 jekyll | ||
|
||
<% if @meta.gems? %> | ||
|