23 lines
386 B
Docker
23 lines
386 B
Docker
|
FROM golang:alpine as builder
|
||
|
|
||
|
RUN apk add --no-cache \
|
||
|
git
|
||
|
|
||
|
WORKDIR /app
|
||
|
|
||
|
ARG COMMIT=latest
|
||
|
|
||
|
RUN GOBIN=/app go install git.siteop.biz/chtwrs/chirpnest@$COMMIT
|
||
|
|
||
|
FROM alpine:latest
|
||
|
|
||
|
RUN apk add --no-cache \
|
||
|
libstdc++
|
||
|
|
||
|
WORKDIR /app/
|
||
|
|
||
|
# Copy the Pre-built binary file from the previous stage
|
||
|
COPY --from=builder /app/chirpnest .
|
||
|
# Command to run the executable
|
||
|
CMD ["./chirpnest"]
|