mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-12 15:51:01 +00:00
Upgrade Go to 1.19 * Use go install to install statik for CI/CD * Switch from stretch to buster for idk The stretch release doesn't exist anymore for go 1.19 docker images. buster is a newer version of Debian anyway (v10 vs v9) Co-authored-by: Fletcher Haynes <fletcher.haynes@molecula.com>
7 lines
87 B
Text
7 lines
87 B
Text
FROM golang:1.19
|
|
|
|
WORKDIR /
|
|
COPY fakeidp ./
|
|
RUN go build .
|
|
|
|
ENTRYPOINT ["/fakeidpidk"]
|