docker: update to Go 1.18.1 and debian:bullseye-slim as base
This commit is contained in:
parent
9b313b3914
commit
240eebe403
1 changed files with 4 additions and 10 deletions
14
Dockerfile
14
Dockerfile
|
@ -11,20 +11,14 @@
|
||||||
# For more information how to use this docker image visit:
|
# For more information how to use this docker image visit:
|
||||||
# https://github.com/lbryio/lbcd/tree/master/docs
|
# https://github.com/lbryio/lbcd/tree/master/docs
|
||||||
#
|
#
|
||||||
# 9246 Mainnet Bitcoin peer-to-peer port
|
# 9246 Mainnet LBRY peer-to-peer port
|
||||||
# 9245 Mainet RPC port
|
# 9245 Mainet RPC port
|
||||||
|
|
||||||
ARG ARCH=amd64
|
ARG ARCH=amd64
|
||||||
# using the SHA256 instead of tags
|
|
||||||
# https://github.com/opencontainers/image-spec/blob/main/descriptor.md#digests
|
FROM golang:1.18.1 AS build-container
|
||||||
# https://cloud.google.com/architecture/using-container-images
|
|
||||||
# https://github.com/google/go-containerregistry/blob/main/cmd/crane/README.md
|
|
||||||
# ➜ ~ crane digest golang:1.16-alpine3.12
|
|
||||||
# sha256:db2475a1dbb2149508e5db31d7d77a75e6600d54be645f37681f03f2762169ba
|
|
||||||
FROM golang@sha256:db2475a1dbb2149508e5db31d7d77a75e6600d54be645f37681f03f2762169ba AS build-container
|
|
||||||
|
|
||||||
ARG ARCH
|
ARG ARCH
|
||||||
ENV GO111MODULE=on
|
|
||||||
|
|
||||||
ADD . /app
|
ADD . /app
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
@ -35,7 +29,7 @@ RUN set -ex \
|
||||||
&& echo "Compiling for $GOARCH" \
|
&& echo "Compiling for $GOARCH" \
|
||||||
&& go install -v . ./cmd/...
|
&& go install -v . ./cmd/...
|
||||||
|
|
||||||
FROM $ARCH/alpine:3.12
|
FROM $ARCH/debian:bullseye-20220418-slim
|
||||||
|
|
||||||
COPY --from=build-container /go/bin /bin
|
COPY --from=build-container /go/bin /bin
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue