···33# podman build -f ./cmd/beemo/Dockerfile -t beemo .
4455### Compile stage
66-FROM alpine:3.17 AS build-env
77-RUN apk add --no-cache build-base make go git
66+FROM golang:1.20-alpine3.17 AS build-env
77+RUN apk add --no-cache build-base make git
8899ADD . /dockerbuild
1010WORKDIR /dockerbuild
+2-7
cmd/bigsky/Dockerfile
···33# podman build -f ./cmd/bigsky/Dockerfile -t bigsky .
4455### Compile stage
66-77-# trouble with 'No such file or directory' when building using 'golang:1.19'
88-# images, I think because of library errors when copied to 'alpine' image below
99-# https://megamorf.gitlab.io/2019/09/08/alpine-go-builds-with-cgo-enabled/
1010-# TODO: lock to a specific version of go toolchain
1111-FROM alpine:3.17 AS build-env
1212-RUN apk add --no-cache build-base make go git
66+FROM golang:1.20-alpine3.17 AS build-env
77+RUN apk add --no-cache build-base make git
138149ADD . /dockerbuild
1510WORKDIR /dockerbuild