AnthoLume/Dockerfile
Evan Reichard 9bd6bf7727
All checks were successful
continuous-integration/drone/push Build is passing
[fix] docker cicd build
2024-01-20 15:32:04 -05:00

27 lines
558 B
Docker

# Certificate Store
FROM alpine AS certs
RUN apk update && apk add ca-certificates
# Build Image
FROM golang:1.21 AS build
# Create Package Directory
RUN mkdir -p /opt/antholume
# Copy Source
WORKDIR /src
COPY . .
# Compile
RUN go build \
-ldflags "-X reichard.io/antholume/config.version=`git describe --tags`" \
-o /opt/antholume/server
# Create Image
FROM busybox:1.36
COPY --from=certs /etc/ssl/certs /etc/ssl/certs
COPY --from=build /opt/antholume /opt/antholume
WORKDIR /opt/antholume
EXPOSE 8585
ENTRYPOINT ["/opt/antholume/server", "serve"]