2019-09-02 01:47:55 -07:00
|
|
|
FROM ubuntu:18.04
|
2019-05-22 06:53:54 +09:00
|
|
|
|
|
|
|
LABEL "com.github.actions.name"="Deploy to GitHub Pages for Static Site Generator"
|
|
|
|
LABEL "com.github.actions.description"="A GitHub Action to deploy your static site to GitHub Pages with Static Site Generator"
|
|
|
|
LABEL "com.github.actions.icon"="upload-cloud"
|
|
|
|
LABEL "com.github.actions.color"="blue"
|
|
|
|
|
|
|
|
LABEL "repository"="https://github.com/peaceiris/actions-gh-pages"
|
|
|
|
LABEL "homepage"="https://github.com/peaceiris/actions-gh-pages"
|
|
|
|
LABEL "maintainer"="peaceiris"
|
|
|
|
|
2019-09-02 01:47:55 -07:00
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
2019-05-22 06:53:54 +09:00
|
|
|
git \
|
2019-09-02 01:47:55 -07:00
|
|
|
openssh-client \
|
|
|
|
ca-certificates && \
|
|
|
|
rm -rf /var/lib/apt/lists/*
|
2019-05-22 06:53:54 +09:00
|
|
|
|
2019-09-02 01:47:55 -07:00
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
2019-05-22 06:53:54 +09:00
|
|
|
ENTRYPOINT [ "/entrypoint.sh" ]
|