Compare commits

..

1 Commits
v1.0.0 ... main

Author SHA1 Message Date
9cdf606b6f add Dockerfile 2023-06-18 18:48:25 +08:00

9
Dockerfile Normal file
View File

@ -0,0 +1,9 @@
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;