mirror of
https://github.com/joshdk/drone-skip-pipeline
synced 2024-11-22 13:41:57 +01:00
77 lines
2.6 KiB
Docker
77 lines
2.6 KiB
Docker
# Copyright Josh Komoroske. All rights reserved.
|
|
# Use of this source code is governed by the MIT license,
|
|
# a copy of which can be found in the LICENSE.txt file.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# The certs stage is used to obtain a current set of CA certificates.
|
|
FROM alpine:3.17 as certs
|
|
|
|
# hadolint ignore=DL3018
|
|
RUN apk add --no-cache \
|
|
ca-certificates
|
|
|
|
# The builder build stage compiles the Go code into a static binary.
|
|
FROM golang:1.20-alpine as builder
|
|
|
|
ARG CREATED
|
|
ARG REVISION
|
|
ARG VERSION
|
|
|
|
WORKDIR /go/src/github.com/joshdk/drone-skip-pipeline
|
|
|
|
COPY . .
|
|
|
|
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build \
|
|
-o /bin/drone-skip-pipeline \
|
|
-buildvcs=false \
|
|
-ldflags "-buildid= -s -w \
|
|
-X 'jdk.sh/meta.date=$CREATED' \
|
|
-X 'jdk.sh/meta.sha=$REVISION' \
|
|
-X 'jdk.sh/meta.version=$VERSION' \
|
|
" \
|
|
-trimpath \
|
|
main.go
|
|
|
|
# The upx build stage uses upx to compress the binary.
|
|
FROM alpine:3.17 as upx
|
|
|
|
RUN wget https://github.com/upx/upx/releases/download/v3.96/upx-3.96-amd64_linux.tar.xz \
|
|
&& tar -xf upx-3.96-amd64_linux.tar.xz \
|
|
&& install upx-3.96-amd64_linux/upx /bin/upx \
|
|
&& rm -rf upx*
|
|
|
|
COPY --from=builder /bin/drone-skip-pipeline /bin/drone-skip-pipeline
|
|
|
|
RUN upx --best --ultra-brute /bin/drone-skip-pipeline
|
|
|
|
# The final build stage copies in the final binary.
|
|
FROM scratch
|
|
|
|
ARG CREATED
|
|
ARG REVISION
|
|
ARG VERSION
|
|
|
|
MAINTAINER Josh Komoroske <github.com/joshdk>
|
|
|
|
# Standard OCI image labels.
|
|
# See: https://github.com/opencontainers/image-spec/blob/v1.0.1/annotations.md#pre-defined-annotation-keys
|
|
LABEL org.opencontainers.image.created="$CREATED"
|
|
LABEL org.opencontainers.image.authors="Josh Komoroske <github.com/joshdk>"
|
|
LABEL org.opencontainers.image.url="https://github.com/joshdk/drone-skip-pipeline"
|
|
LABEL org.opencontainers.image.documentation="https://github.com/joshdk/drone-skip-pipeline/blob/master/README.md"
|
|
LABEL org.opencontainers.image.source="https://github.com/joshdk/drone-skip-pipeline"
|
|
LABEL org.opencontainers.image.version="$VERSION"
|
|
LABEL org.opencontainers.image.revision="$REVISION"
|
|
LABEL org.opencontainers.image.vendor="Josh Komoroske <github.com/joshdk>"
|
|
LABEL org.opencontainers.image.licenses="MIT"
|
|
LABEL org.opencontainers.image.ref.name="ghcr.io/joshdk/drone-skip-pipeline:$VERSION"
|
|
LABEL org.opencontainers.image.title="DroneCI Skip Pipeline"
|
|
LABEL org.opencontainers.image.description="DroneCI plugin to skip pipelines based on files changes"
|
|
|
|
COPY LICENSE.txt /
|
|
COPY --from=certs /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ca-certificates.crt
|
|
COPY README.md /
|
|
COPY --from=upx /bin/drone-skip-pipeline /bin/drone-skip-pipeline
|
|
|
|
ENTRYPOINT ["/bin/drone-skip-pipeline"]
|