Skip to content

Commit 9437a66

Browse files
NO-ISSUE: Bump openshift/release from golang-1.16 to golang-1.17
Bumps openshift/release from golang-1.16 to golang-1.17. --- updated-dependencies: - dependency-name: openshift/release dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent 14b08eb commit 9437a66

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Dockerfile.assisted-service

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ COPY tools/generate_python_client.sh .
55
RUN chmod +x ./generate_python_client.sh && SWAGGER_FILE=swagger.yaml OUTPUT=/build ./generate_python_client.sh
66

77
# TODO: Find a pure Python3 base image, rather than relying on the golang one
8-
FROM registry.ci.openshift.org/openshift/release:golang-1.16 as pybuilder
8+
FROM registry.ci.openshift.org/openshift/release:golang-1.17 as pybuilder
99
COPY . /assisted-service
1010
COPY --from=swagger_py /build /assisted-service/build
1111
RUN python3 -m pip install -I pip && pip3 install -I -r /assisted-service/dev-requirements.txt
@@ -14,7 +14,7 @@ RUN cd /assisted-service/build && python3 ../tools/client_package_initializer.py
1414
# TODO: Currently, the Python package is included in the service image for testing purposes. It conveniently allows matching a service version to a specific Python client version. In the future, once the Python package is published on pip, it should (probably) be removed from the Assisted Service image (this dockerfile).
1515

1616
# Build binaries
17-
FROM registry.ci.openshift.org/openshift/release:golang-1.16 as builder
17+
FROM registry.ci.openshift.org/openshift/release:golang-1.17 as builder
1818
# Bring in the go dependencies before anything else so we can take
1919
# advantage of caching these layers in future builds.
2020
COPY go.mod go.mod

Dockerfile.assisted-service-debug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
ARG SERVICE=quay.io/ocpmetal/assisted-service:latest
2-
FROM registry.ci.openshift.org/openshift/release:golang-1.16 AS download_dlv
2+
FROM registry.ci.openshift.org/openshift/release:golang-1.17 AS download_dlv
33
RUN go get github.com/go-delve/delve/cmd/dlv
44

55
FROM $SERVICE

Dockerfile.bundle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.ci.openshift.org/openshift/release:golang-1.16 as build
1+
FROM registry.ci.openshift.org/openshift/release:golang-1.17 as build
22

33
ENV GO111MODULE=on
44
ENV GOFLAGS=""

0 commit comments

Comments
 (0)