diff options
author | Diego Becciolini <diego.becciolini@nextdlp.com> | 2023-12-13 20:41:33 +0000 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2023-12-14 10:25:47 +0900 |
commit | d9e2789502bf576eabd0232f4fad9bd4abcd4f31 (patch) | |
tree | 2385682cd2ae4a963472407d936e223bd39e9215 | |
parent | use locally checked out lib in the docker job (diff) | |
download | golite-d9e2789502bf576eabd0232f4fad9bd4abcd4f31.tar.gz golite-d9e2789502bf576eabd0232f4fad9bd4abcd4f31.tar.xz |
temporary fix to make the job pass
use same workaround as https://github.com/authelia/authelia/pull/6404
before https://github.com/mattn/go-sqlite3/pull/1177 fixes the build
otherwise
-rw-r--r-- | _example/simple/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_example/simple/Dockerfile b/_example/simple/Dockerfile index b8545da..8ed0473 100644 --- a/_example/simple/Dockerfile +++ b/_example/simple/Dockerfile @@ -9,7 +9,7 @@ # ----------------------------------------------------------------------------- # Build Stage # ----------------------------------------------------------------------------- -FROM golang:alpine AS build +FROM golang:alpine3.18 AS build # Important: # Because this is a CGO enabled package, you are required to set it as 1. |