From 4838b1b240e498567e10177c3c65cc7308f014b1 Mon Sep 17 00:00:00 2001 From: John Hope Date: Wed, 2 Oct 2024 17:05:49 -0400 Subject: [PATCH] Bump rust version in example server too --- examples/rust-simple/Dockerfile | 2 +- examples/rust-simple/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/rust-simple/Dockerfile b/examples/rust-simple/Dockerfile index 6f932b5407..6c371fb43e 100644 --- a/examples/rust-simple/Dockerfile +++ b/examples/rust-simple/Dockerfile @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM rust:1.71.0 as builder +FROM rust:1.71.1 as builder RUN useradd -m build RUN apt update && apt install -y protobuf-compiler diff --git a/examples/rust-simple/Makefile b/examples/rust-simple/Makefile index 8c58d28c20..08f881d1c7 100644 --- a/examples/rust-simple/Makefile +++ b/examples/rust-simple/Makefile @@ -29,7 +29,7 @@ PROD_REPO ?= us-docker.pkg.dev/agones-images/examples mkfile_path := $(abspath $(lastword $(MAKEFILE_LIST))) project_path := $(dir $(mkfile_path)) root_path := $(realpath $(project_path)/../..) -version := 0.13 +version := 0.14 ifeq ($(REPOSITORY),) server_tag := rust-simple-server:$(version) else