Compare commits

..

No commits in common. "main" and "v1.0.0" have entirely different histories.
main ... v1.0.0

View File

@ -1,9 +0,0 @@
FROM golang:alpine3.18
ARG VERSION=v1.0.0
RUN apk --update --no-cache add git upx
WORKDIR /go/src
COPY . .
RUN set -eux; \
go env -w GOPRIVATE=code.simaek.com ; \
go build -ldflags="-s -w"; \
upx -9 markdown-renderer;