Skip to content

Commit

Permalink
Upgrade Golang to 1.17.7
Browse files Browse the repository at this point in the history
Related-to: kubernetes-sigs/json#8
Related-to: kubernetes-sigs/controller-tools#643

Signed-off-by: Martin Tzvetanov Grigorov <mgrigorov@apache.org>
  • Loading branch information
martin-g committed Feb 22, 2022
1 parent b40216a commit b83c090
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion installer/dockerfile/controller-manager/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.16.5 AS builder
FROM golang:1.17.7 AS builder
WORKDIR /go/src/volcano.sh/
ADD . volcano
RUN cd volcano && make vc-controller-manager
Expand Down
2 changes: 1 addition & 1 deletion installer/dockerfile/scheduler/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

FROM golang:1.16.5 AS builder
FROM golang:1.17.7 AS builder
WORKDIR /go/src/volcano.sh/
ADD . volcano
RUN cd volcano && make vc-scheduler
Expand Down
2 changes: 1 addition & 1 deletion installer/dockerfile/webhook-manager/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

# The base image is created via `Dockerfile.base`, the base image is cached
# since the required packages change very rarely.
FROM golang:1.16 AS builder
FROM golang:1.17.7 AS builder
WORKDIR /go/src/volcano.sh/
ADD . volcano
RUN cd volcano && make vc-webhook-manager
Expand Down

0 comments on commit b83c090

Please sign in to comment.