this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Dockerfiles: update beemo and bigsky builds to golang v1.20

Matching existing change to 'lablemaker' and golang CI action.

This fixes a container error with bigsky, using new unsafe.StringDef
code.

+4 -9
+2 -2
cmd/beemo/Dockerfile
··· 3 3 # podman build -f ./cmd/beemo/Dockerfile -t beemo . 4 4 5 5 ### Compile stage 6 - FROM alpine:3.17 AS build-env 7 - RUN apk add --no-cache build-base make go git 6 + FROM golang:1.20-alpine3.17 AS build-env 7 + RUN apk add --no-cache build-base make git 8 8 9 9 ADD . /dockerbuild 10 10 WORKDIR /dockerbuild
+2 -7
cmd/bigsky/Dockerfile
··· 3 3 # podman build -f ./cmd/bigsky/Dockerfile -t bigsky . 4 4 5 5 ### Compile stage 6 - 7 - # trouble with 'No such file or directory' when building using 'golang:1.19' 8 - # images, I think because of library errors when copied to 'alpine' image below 9 - # https://megamorf.gitlab.io/2019/09/08/alpine-go-builds-with-cgo-enabled/ 10 - # TODO: lock to a specific version of go toolchain 11 - FROM alpine:3.17 AS build-env 12 - RUN apk add --no-cache build-base make go git 6 + FROM golang:1.20-alpine3.17 AS build-env 7 + RUN apk add --no-cache build-base make git 13 8 14 9 ADD . /dockerbuild 15 10 WORKDIR /dockerbuild