Pin alpine version

This commit is contained in:
Till Faelligen 2023-12-12 14:20:17 +01:00
parent 32d4ba579a
commit ffc0d06672
No known key found for this signature in database
GPG key ID: ACCDC9606D472758

View file

@ -3,7 +3,8 @@
# #
# base installs required dependencies and runs go mod download to cache dependencies # base installs required dependencies and runs go mod download to cache dependencies
# #
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.21-alpine AS base # Pinned to alpine3.18 until https://github.com/mattn/go-sqlite3/issues/1164 is solved
FROM --platform=${BUILDPLATFORM} docker.io/golang:1.21-alpine3.18 AS base
RUN apk --update --no-cache add bash build-base curl git RUN apk --update --no-cache add bash build-base curl git
# #