Skip to content

Instantly share code, notes, and snippets.

@jackgris
jackgris / Notes-about-versioning-Go.md
Created August 2, 2023 21:54
Versioning Go binaries

With a code like this:

package main

import "fmt"

var (
	version = "dev"
	commit = "n/a"
@jackgris
jackgris / DOCKERFILE
Created August 10, 2023 22:17 — forked from MatthewJamesBoyle/DOCKERFILE
production go dockerfile
FROM golang:1.21.0-bullseye as builder
COPY . /workdir
WORKDIR /workdir
ENV CGO_CPPFLAGS="-D_FORTIFY_SOURCE=2 -fstack-protector-all"
ENV GOFLAGS="-buildmode=pie"
RUN go build -ldflags "-s -w" -trimpath ./cmd/app