generated from hackforla/.github-hackforla-base-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "changed build version for testing only"
This reverts commit 31d498c.
- Loading branch information
yoyoyojoe
committed
Oct 6, 2022
1 parent
91e1d10
commit 9131620
Showing
1 changed file
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ | |
### | ||
|
||
# The FROM command specifies a base image to start with. We're using an Alpine Linux base because it's small (around 5MB), together with a Ruby installation | ||
# that matches GitHub Pages' current Ruby version (2.7.3-alpine3.13 as of 08/03/2022, ruby:2.7.4-alpine3.14 as of 8/18/2022) | ||
FROM ruby:2.7.3-alpine3.13 AS build | ||
# that matches GitHub Pages' current Ruby version (2.7.3, as of 08/03/2022) | ||
FROM ruby:2.7.4-alpine3.14 AS build | ||
|
||
# Set Ruby ENV variables | ||
ENV GEM_BIN=/usr/gem/bin | ||
|
@@ -72,7 +72,7 @@ RUN gem install github-pages -- \ | |
### BUILD STAGE 2 | ||
### | ||
|
||
FROM ruby:2.7.3-alpine3.13 | ||
FROM ruby:2.7.4-alpine3.14 | ||
LABEL maintainer "Jordon Bedwell <[email protected]>" | ||
|
||
# Copy shell scripts from the Dockerfile directory into the root of the new build stage. | ||
|