grafana-backuper/Dockerfile

34 lines
693 B
Text
Raw Normal View History

FROM golang:1.23.4-bookworm AS build
2024-02-16 23:01:12 +01:00
# 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 cmd/main.go
2024-02-16 23:01:12 +01:00
# -- -- -- -- -- --
# 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
2024-02-16 23:01:12 +01:00
RUN chmod +x /app/grafana-backuper
# Copy the wrapper script
COPY entrypoint.sh /app
# Ensure the script is executable
RUN chmod +x /app/entrypoint.sh
ENTRYPOINT ["/app/entrypoint.sh"]