webhookd/Dockerfile

100 lines
1.9 KiB
Docker
Raw Permalink Normal View History

#########################################
# Build stage
#########################################
2023-10-03 17:58:13 +00:00
FROM golang:1.21 AS builder
2014-09-23 18:21:43 +00:00
# Repository location
ARG REPOSITORY=github.com/ncarlier
2014-09-23 18:21:43 +00:00
# Artifact name
ARG ARTIFACT=webhookd
2014-09-23 18:21:43 +00:00
# Copy sources into the container
ADD . /go/src/$REPOSITORY/$ARTIFACT
2014-09-23 18:21:43 +00:00
# Set working directory
WORKDIR /go/src/$REPOSITORY/$ARTIFACT
2014-09-23 18:21:43 +00:00
# Build the binary
RUN make
2014-09-23 18:21:43 +00:00
#########################################
# Distribution stage
#########################################
FROM alpine:latest AS slim
2014-09-23 18:21:43 +00:00
# Repository location
ARG REPOSITORY=github.com/ncarlier
2014-09-23 18:21:43 +00:00
# Artifact name
ARG ARTIFACT=webhookd
2014-09-23 18:21:43 +00:00
# User
ARG USER=webhookd
ARG UID=1000
# Create non-root user
RUN adduser \
--disabled-password \
--gecos "" \
--home "$(pwd)" \
--no-create-home \
--uid "$UID" \
"$USER"
2014-09-23 18:21:43 +00:00
# Install deps
RUN apk add --no-cache bash gcompat
# Install binary
COPY --from=builder /go/src/$REPOSITORY/$ARTIFACT/release/$ARTIFACT /usr/local/bin/$ARTIFACT
VOLUME [ "/scripts" ]
EXPOSE 8080
USER $USER
CMD [ "webhookd" ]
2019-03-29 09:27:01 +00:00
#########################################
# Distribution stage with some tooling
#########################################
FROM alpinelinux/docker-cli:latest AS distrib
# Repository location
ARG REPOSITORY=github.com/ncarlier
# Artifact name
ARG ARTIFACT=webhookd
# User
ARG USER=webhookd
ARG UID=1000
# Create non-root user
RUN adduser \
--disabled-password \
--gecos "" \
--home "$(pwd)" \
--no-create-home \
--uid "$UID" \
"$USER"
# Install deps
RUN apk add --no-cache bash gcompat git openssl openssh-client curl jq docker-cli-compose aha
# Install binary and entrypoint
COPY --from=builder /go/src/$REPOSITORY/$ARTIFACT/release/$ARTIFACT /usr/local/bin/$ARTIFACT
COPY docker-entrypoint.sh /
# Define entrypoint
ENTRYPOINT ["/docker-entrypoint.sh"]
2014-09-23 18:21:43 +00:00
VOLUME [ "/scripts" ]
EXPOSE 8080
USER $USER
CMD [ "webhookd" ]