vk-share/Dockerfile

13 lines
326 B
Docker
Raw Normal View History

2023-07-16 04:01:50 +02:00
FROM alpine
LABEL "name"="VK Share"
LABEL "description"="Share GitHub repository in VK."
2024-02-01 05:09:16 +01:00
LABEL "maintainer"="Kai Kimera <mail@kai.kim>"
2023-07-16 05:29:57 +02:00
LABEL "repository"="https://github.com/ghastore/vk-share.git"
2023-07-16 04:01:50 +02:00
LABEL "homepage"="https://github.com/ghastore"
COPY *.sh /
RUN apk add --no-cache bash curl jq
ENTRYPOINT ["/entrypoint.sh"]