grafana-backuper/Dockerfile
Renovate Bot bb92e11917
All checks were successful
continuous-integration/drone/push Build is passing
Update golang Docker tag to v1.22.2
2024-04-03 18:18:14 +00:00

26 lines
538 B
Docker

FROM golang:1.22.2-bookworm AS build
# Create build workspace folder
WORKDIR /workspace
ADD . /workspace
# Install updates and build tools
RUN apt-get update --yes && \
apt-get install --yes build-essential
# Build the actual binary
RUN CGO_ENABLED=0 go build -o grafana-backuper main.go
# -- -- -- -- -- --
# Set up image to run the tool
FROM alpine
# Create main app folder to run from
WORKDIR /app
# Copy built binary from build image
COPY --from=build /workspace/grafana-backuper /app
ENTRYPOINT ["/app/grafana-backuper"]