Skip to content

Commit

Permalink
Fix base golang image URL
Browse files Browse the repository at this point in the history
  • Loading branch information
rg0now committed Sep 28, 2023
1 parent bf21ddf commit bd3a86b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion 99-labs/02-webapps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:latest as build
FROM docker.io/golang:latest as build
# Copy the source files from the host
COPY . /
Expand Down
2 changes: 1 addition & 1 deletion 99-labs/code/helloworld/deploy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
############################################
# Stage 1: Compile the binary in a containerized Golang environment
############################################
FROM golang:latest as build
FROM docker.io/golang:latest as build

# Copy the source files from the host
COPY . /
Expand Down
2 changes: 1 addition & 1 deletion 99-labs/code/kvstore/deploy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
############################################
# Stage 1: Compile the binary in a containerized Golang environment
############################################
FROM golang:latest as build
FROM docker.io/golang:latest as build

# Copy the source files from the host
COPY . /kvstore
Expand Down

0 comments on commit bd3a86b

Please sign in to comment.