Skip to content

Commit

Permalink
Pin golang image for builder.
Browse files Browse the repository at this point in the history
Pin alpine 3.18. See  See mattn/go-sqlite3#1164 (comment).
  • Loading branch information
woblerr committed Dec 11, 2023
1 parent 508e970 commit fa08043
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
ARG REPO_BUILD_TAG="unknown"

FROM golang:1.20-alpine AS builder
# Pin alpine 3.18.
# See https://github.com/mattn/go-sqlite3/issues/1164#issuecomment-1848677118
FROM golang:1.20-alpine3.18 AS builder
ARG REPO_BUILD_TAG
COPY . /build
WORKDIR /build
Expand Down

0 comments on commit fa08043

Please sign in to comment.