Skip to content
This repository has been archived by the owner on Jun 6, 2023. It is now read-only.

Dockerfile: fix labels #68

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export DOCKER_BUILD_ARGS= --build-arg CURL_CONFIGURE_OPTION=${CONFIGURE_BUILD_OP
--build-arg CURL_RELEASE_TAG=${LATEST_RELEASE_TAG} \
--build-arg CURL_RELEASE_VERSION=${LATEST_RELEASE_VERSION} \
--build-arg CURL_GIT_REPO=https://github.com/curl/curl.git \
--label Name=curl --label Version=1.0.0 \
--label name=curl --label version=1.0.0 \
--label se.haxx.curl=curl \
--label se.haxx.curl.version=${LATEST_RELEASE_VERSION} \
--label se.haxx.curl.release_tag=${LATEST_RELEASE_TAG} \
Expand Down
6 changes: 3 additions & 3 deletions alpine/latest/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ ENV CURL_GIT_REPO ${CURL_GIT_REPO}
###############################################################
# define docker labels
###############################################################
LABEL Maintainer="James Fuller <[email protected]>"
LABEL Name="curl"
LABEL Version="${LABEL_VERSION}"
LABEL maintainer="James Fuller <[email protected]>"
LABEL name="${LABEL_NAME}"
LABEL version="${LABEL_VERSION}"
LABEL docker.cmd="docker run -it curl/curl:7.82.0 -s -L http://curl.se"

###############################################################
Expand Down