-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
23 lines (18 loc) · 769 Bytes
/
Dockerfile
File metadata and controls
23 lines (18 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
FROM alpine:3.23.3
ARG VERSION
ARG REVISION
ARG BUILDDATE
WORKDIR /usr/local/bin
COPY gitlab-ci-semver-labels .
ENTRYPOINT ["gitlab-ci-semver-labels"]
LABEL \
maintainer="Piotr Roszatycki <piotr.roszatycki@gmail.com>" \
org.opencontainers.image.created=${BUILDDATE} \
org.opencontainers.image.description="Download release from Gitlab project" \
org.opencontainers.image.licenses="MIT" \
org.opencontainers.image.revision=${REVISION} \
org.opencontainers.image.source=https://github.com/dex4er/gitlab-ci-semver-labels \
org.opencontainers.image.title=gitlab-ci-semver-labels \
org.opencontainers.image.url=https://github.com/dex4er/gitlab-ci-semver-labels \
org.opencontainers.image.vendor=dex4er \
org.opencontainers.image.version=v${VERSION}