2026-07-10 19:24:26 -03:00
|
|
|
FROM golang:1.25.11-bookworm@sha256:b96f24a8d7d010ea0acb9c3ba99064740f02b6b984612b28bd3c9c5ab9453e38
|
2024-10-23 09:52:23 +02:00
|
|
|
|
|
|
|
|
MAINTAINER Olaoluwa Osuntokun <laolu@lightning.engineering>
|
|
|
|
|
|
|
|
|
|
# Golang build related environment variables that are static and used for all
|
|
|
|
|
# architectures/OSes.
|
|
|
|
|
ENV GODEBUG netdns=cgo
|
|
|
|
|
ENV GO111MODULE=auto
|
|
|
|
|
ENV CGO_ENABLED=0
|
|
|
|
|
|
|
|
|
|
# Set up cache directories. Those will be mounted from the host system to speed
|
|
|
|
|
# up builds. If go isn't installed on the host system, those will fall back to
|
|
|
|
|
# temp directories during the build (see make/release_flags.mk).
|
|
|
|
|
ENV GOCACHE=/tmp/build/.cache
|
|
|
|
|
ENV GOMODCACHE=/tmp/build/.modcache
|
|
|
|
|
|
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
|
|
|
git \
|
|
|
|
|
make \
|
|
|
|
|
tar \
|
|
|
|
|
zip \
|
|
|
|
|
bash \
|
|
|
|
|
&& mkdir -p /tmp/build/litd \
|
|
|
|
|
&& mkdir -p /tmp/build/.cache \
|
|
|
|
|
&& mkdir -p /tmp/build/.modcache \
|
|
|
|
|
&& chmod -R 777 /tmp/build/
|
|
|
|
|
|
|
|
|
|
WORKDIR /tmp/build/litd
|