-
-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from jenkey2011/update_node
Update node
- Loading branch information
Showing
2 changed files
with
8 additions
and
4 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM node:10.14.2-alpine as base | ||
FROM node:fermium-slim as base | ||
|
||
LABEL "com.github.actions.name"="Vuepress deploy" | ||
LABEL "com.github.actions.description"="A GitHub Action to build and deploy Vuepress sites to GitHub Pages" | ||
|
@@ -9,7 +9,7 @@ LABEL "repository"="https://github.com/jenkey2011/vuepress-deploy" | |
LABEL "homepage"="https://github.com/jenkey2011/vuepress-deploy" | ||
LABEL "maintainer"="Jenkey2011 <[email protected]>" | ||
|
||
RUN apk add --no-cache git jq | ||
RUN apt-get update && apt-get install -y git jq | ||
|
||
COPY entrypoint.sh /entrypoint.sh | ||
ENTRYPOINT ["/entrypoint.sh"] |
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