mirror of
https://github.com/wneessen/apg-go.git
synced 2024-11-09 15:52:54 +01:00
Winni Neessen
6987fdd8af
The Docker image creation and pushing procedures have been moved from the goreleaser.yaml file to a separate GitHub Workflow file docker.yml. This shift gives a more granular control over the Docker image build and push operations with specific GitHub Actions. Also, added the Dockerfile instructions and docker-files for image building to cope up with the changed Docker process.
20 lines
No EOL
714 B
Docker
20 lines
No EOL
714 B
Docker
## Build first
|
|
FROM golang:latest AS builder
|
|
RUN mkdir /builddir
|
|
ADD . /builddir/
|
|
WORKDIR /builddir
|
|
RUN CGO_ENABLED=0 go build -a -installsuffix cgo -ldflags '-w -s -extldflags "-static"' -o apg-go \
|
|
github.com/wneessen/apg-go/cmd/apg
|
|
|
|
## Create scratch image
|
|
FROM scratch
|
|
LABEL maintainer="wn@neessen.dev"
|
|
COPY ["docker-files/passwd", "/etc/passwd"]
|
|
COPY ["docker-files/group", "/etc/group"]
|
|
COPY --from=builder ["/etc/ssl/certs/ca-certificates.crt", "/etc/ssl/cert.pem"]
|
|
COPY --chown=apg-go ["LICENSE", "/apg-go/LICENSE"]
|
|
COPY --chown=apg-go ["README.md", "/apg-go/README.md"]
|
|
COPY --from=builder --chown=apg-go ["/builddir/apg-go", "/apg-go/apg-go"]
|
|
WORKDIR /apg-go
|
|
USER apg-go
|
|
ENTRYPOINT ["/apg-go/apg-go"] |