This repository was archived by the owner on Jun 6, 2023. It is now read-only.
File tree 3 files changed +10
-10
lines changed
3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 3
3
# ***************************************************************************
4
4
5
5
6
- export LATEST_RELEASE_VERSION =8_00_1
6
+ export LATEST_RELEASE_VERSION =8_1_0
7
7
export LATEST_RELEASE_TAG =curl-${LATEST_RELEASE_VERSION}
8
8
export DOCKER_CLI_EXPERIMENTAL =enabled
9
9
Original file line number Diff line number Diff line change 4
4
#
5
5
# SPDX-License-Identifier: MIT
6
6
#
7
- # pinning builder image to Alpine 3.16.2
7
+ # pinning builder image to Alpine 3.17.3
8
8
# ##############################################################
9
- FROM registry.hub.docker.com/library/alpine:3.16.2 AS builder
9
+ FROM registry.hub.docker.com/library/alpine:3.17.3 AS builder
10
10
11
11
# ##############################################################
12
12
# set build args
@@ -51,9 +51,9 @@ RUN ./buildconf && \
51
51
make DESTDIR="/alpine/" install -j$(nproc)
52
52
53
53
# ##############################################################
54
- # pinning image to Alpine 3.16.2
54
+ # pinning image to Alpine 3.17.3
55
55
# ##############################################################
56
- FROM registry.hub.docker.com/library/alpine:3.16.2
56
+ FROM registry.hub.docker.com/library/alpine:3.17.3
57
57
58
58
ARG CURL_RELEASE_TAG=latest
59
59
ARG CURL_RELEASE_VERSION
@@ -69,7 +69,7 @@ ENV CURL_GIT_REPO ${CURL_GIT_REPO}
69
69
LABEL Maintainer=
"James Fuller <[email protected] >"
70
70
LABEL Name="curl"
71
71
LABEL Version="${LABEL_VERSION}"
72
- LABEL docker.cmd="docker run -it curl/curl:8.00.1 -s -L http://curl.se"
72
+ LABEL docker.cmd="docker run -it curl/curl:8.1.0 -s -L http://curl.se"
73
73
74
74
# ##############################################################
75
75
# dependencies
Original file line number Diff line number Diff line change 2
2
docker build ${DOCKER_BUILD_OPTS} ${DOCKER_BUILD_ARGS} -t " curl/curl:${LATEST_RELEASE_VERSION} " -f Dockerfile .
3
3
4
4
multibuild :
5
- docker buildx build ${DOCKER_BUILD_OPTS} ${DOCKER_BUILD_ARGS} -t " curlimages/curl:8.00.1 " --platform=${DOCKER_MULTI_ARCH} -f Dockerfile . --push
6
- docker buildx imagetools create docker.io/curlimages/curl:8.00.1 --tag curlimages/curl:latest
5
+ docker buildx build ${DOCKER_BUILD_OPTS} ${DOCKER_BUILD_ARGS} -t " curlimages/curl:8.1.0 " --platform=${DOCKER_MULTI_ARCH} -f Dockerfile . --push
6
+ docker buildx imagetools create docker.io/curlimages/curl:8.1.0 --tag curlimages/curl:latest
7
7
8
8
lint :
9
9
docker run --rm --privileged -v ${PWD} :/root/ projectatomic/dockerfile-lint dockerfile_lint -p -f Dockerfile
13
13
docker run --rm curl/curl:${LATEST_RELEASE_VERSION} -S http://httpbin.org/get
14
14
15
15
push-registry :
16
- docker tag curl/curl:${LATEST_RELEASE_VERSION} curlimages/curl:8.00.1
17
- docker push curlimages/curl:8.00.1
16
+ docker tag curl/curl:${LATEST_RELEASE_VERSION} curlimages/curl:8.1.0
17
+ docker push curlimages/curl:8.1.0
18
18
docker tag curl/curl:${LATEST_RELEASE_VERSION} curlimages/curl:latest
19
19
docker push curlimages/curl:latest
20
20
You can’t perform that action at this time.
0 commit comments