this repo has no description
0
fork

Configure Feed

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

labelmaker: have dockerfile use golang:1.20-alpine3.17

We use golang 1.20 now (labelmaker requires some new stdlib things only
in this recent version), and alpine 3.17 (most recent release) is still
on golang 1.19.

+2 -2
+2 -2
cmd/labelmaker/Dockerfile
··· 3 3 # podman build -f ./cmd/labelmaker/Dockerfile -t labelmaker . 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