feat: renovate, update makefile, markdownlint, golancilint, drone integration
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2024-04-08 16:18:46 +02:00
parent 85e2a8587b
commit 0298a6a2bf
12 changed files with 947 additions and 56 deletions

View File

@ -5,21 +5,11 @@ ARG BUILD_IMAGE
# =====================================================================
FROM ${BUILD_IMAGE} AS build
ARG GONOPROXY
ARG GONOSUMDB
ARG GOPRIVATE
ARG GOPROXY
ARG GOSUMDB
ARG VERSION
COPY ./ /workspace
RUN cd /workspace && \
GONOPROXY=${GONOPROXY} \
GONOSUMDB=${GONOSUMDB} \
GOPRIVATE=${GOPRIVATE} \
GOPROXY=${GOPROXY} \
GOSUMDB=${GOSUMDB} \
VERSION=${VERSION} \
make all