From b7f14c5ae0505c73a32cc3f930b8a58ecbfdbd0f Mon Sep 17 00:00:00 2001 From: Ryan Boehning <1250684+ryboe@users.noreply.github.com> Date: Sun, 5 Jan 2025 15:39:38 -0800 Subject: [PATCH 1/2] docs: add link to alpinelinux.org to README Apparently no-op commits don't trigger new GHA builds, so here's a tiny README change. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ae56044..ac9b875 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # gocodespace -An Alpine-based codespace for Go development +An [Alpine](https://alpinelinux.org)-based codespace for Go development ## Features From 67f3d68d5ba31246e765bfdc3e91681678b9a4b6 Mon Sep 17 00:00:00 2001 From: Ryan Boehning <1250684+ryboe@users.noreply.github.com> Date: Sun, 5 Jan 2025 15:43:24 -0800 Subject: [PATCH 2/2] fix: add default GO_VERSION to Dockerfile to suppress warning There is no default value for the GO_VERSION build arg, so docker throws a warning that there is no "golang:-alpine" image. Add a default value of "1.23" to suppress this warning. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bae6f88..e5984b4 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # syntax=docker/dockerfile:1 -ARG GO_VERSION +ARG GO_VERSION="1.23" FROM golang:${GO_VERSION}-alpine AS build ENV CGO_ENABLED="0"