Skip to content

Commit

Permalink
Dockerfile: fix typos
Browse files Browse the repository at this point in the history
Arg `GO_BOOTSTRAP_VERSION` resolved from incorrect value, references are empty when arg is not supplied in docker build command.
"AS" capitalised to silence warning `WARN: FromAsCasing: 'as' and 'FROM' keywords' casing do not match (line 62)`

Change-Id: Ie7c54e027f564b9b1336ca7d73af02d7fb1863ec
Reviewed-on: https://go-review.googlesource.com/c/playground/+/618777
LUCI-TryBot-Result: Go LUCI <[email protected]>
Reviewed-by: Cherry Mui <[email protected]>
Auto-Submit: Robert Findley <[email protected]>
Reviewed-by: Robert Findley <[email protected]>
  • Loading branch information
dbut2 authored and gopherbot committed Oct 11, 2024
1 parent 791ab41 commit b161c0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ ARG GO_VERSION=go1.22.6
# release.
#
# See also https://go.dev/issue/69238.
ARG GO_BOOSTRAP_VERSION=go1.22.6
ARG GO_BOOTSTRAP_VERSION=go1.22.6

############################################################################
# Build Go at GO_VERSION, and build faketime standard library.
Expand Down Expand Up @@ -59,7 +59,7 @@ RUN ./make.bash

############################################################################
# Build playground web server.
FROM debian:buster as build-playground
FROM debian:buster AS build-playground

RUN apt-get update && apt-get install -y ca-certificates git --no-install-recommends
# Build playground from Go built at GO_VERSION.
Expand Down

0 comments on commit b161c0c

Please sign in to comment.