diff --git a/99-labs/02-webapps/README.md b/99-labs/02-webapps/README.md index 7d122d7..689a42e 100644 --- a/99-labs/02-webapps/README.md +++ b/99-labs/02-webapps/README.md @@ -207,7 +207,7 @@ First we create a manifest (a file with the name `Dockerfile`) that describes ho ############################################ # Stage 1: Compile the binary in a containerized Golang environment ############################################ -FROM golang:1.19 as build +FROM golang:latest as build # Copy the source files from the host COPY . / diff --git a/99-labs/code/helloworld/deploy/Dockerfile b/99-labs/code/helloworld/deploy/Dockerfile index 652e750..83256b1 100644 --- a/99-labs/code/helloworld/deploy/Dockerfile +++ b/99-labs/code/helloworld/deploy/Dockerfile @@ -1,7 +1,7 @@ ############################################ # Stage 1: Compile the binary in a containerized Golang environment ############################################ -FROM golang:1.19 as build +FROM golang:latest as build # Copy the source files from the host COPY . / diff --git a/99-labs/code/kvstore/deploy/Dockerfile b/99-labs/code/kvstore/deploy/Dockerfile index b9e3f58..e2cea90 100644 --- a/99-labs/code/kvstore/deploy/Dockerfile +++ b/99-labs/code/kvstore/deploy/Dockerfile @@ -1,7 +1,7 @@ ############################################ # Stage 1: Compile the binary in a containerized Golang environment ############################################ -FROM golang:1.19 as build +FROM golang:latest as build # Copy the source files from the host COPY . /kvstore