-
-
Notifications
You must be signed in to change notification settings - Fork 58
Expand file tree
/
Copy pathDockerfile
More file actions
15 lines (11 loc) · 587 Bytes
/
Dockerfile
File metadata and controls
15 lines (11 loc) · 587 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM node:lts-bullseye-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"
LABEL "com.github.actions.icon"="upload-cloud"
LABEL "com.github.actions.color"="gray-dark"
LABEL "repository"="https://github.com/jenkey2011/vuepress-deploy"
LABEL "homepage"="https://github.com/jenkey2011/vuepress-deploy"
LABEL "maintainer"="Jenkey2011 <jenkey2011@163.com>"
RUN apt-get update && apt-get install -y git jq
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]