-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathDockerfile
More file actions
18 lines (15 loc) · 1002 Bytes
/
Dockerfile
File metadata and controls
18 lines (15 loc) · 1002 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
FROM python:3.12.3-alpine3.18
WORKDIR /
ARG GITHUB_DEPENDENTS_INFO_VERSION=latest
RUN pip install --no-cache-dir github-dependents-info
LABEL maintainer="Nicolas Vuillamy <nicolas.vuillamy@gmail.com>" \
org.opencontainers.image.created=$BUILD_DATE \
org.opencontainers.image.revision=$BUILD_REVISION \
org.opencontainers.image.version=$BUILD_VERSION \
org.opencontainers.image.authors="Nicolas Vuillamy <nicolas.vuillamy@gmail.com>" \
org.opencontainers.image.url="https://github.com/nvuillam/github-dependents-info" \
org.opencontainers.image.source="https://github.com/nvuillam/github-dependents-info" \
org.opencontainers.image.documentation="https://github.com/nvuillam/github-dependents-info" \
org.opencontainers.image.vendor="Nicolas Vuillamy" \
org.opencontainers.image.description="Generate markdown files with the list of dependent repositories of one or multiple packages of a single repository"
ENTRYPOINT ["github-dependents-info"]