From 076ee8608a6f856be606cdbd825f7ce5874d765b Mon Sep 17 00:00:00 2001 From: Devdutt Shenoi Date: Thu, 16 Jan 2025 18:00:43 +0530 Subject: [PATCH 1/5] feat: use alpine as base image --- Dockerfile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1b6d6f51f..3f3868c26 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,19 +14,22 @@ # along with this program. If not, see . # build stage -FROM rust:1.83.0-bookworm as builder +FROM rust:1.83.0-alpine AS builder LABEL org.opencontainers.image.title="Parseable" LABEL maintainer="Parseable Team " LABEL org.opencontainers.image.vendor="Parseable Inc" LABEL org.opencontainers.image.licenses="AGPL-3.0" +# Install dependencies for build +RUN apk add --no-cache musl-dev gcc git + WORKDIR /parseable COPY . . RUN cargo build --release -# final stage -FROM gcr.io/distroless/cc-debian12:latest +# Final stage with a minimal runtime image +FROM alpine:latest WORKDIR /parseable From 154c28f337c1a92e51242b04a6be25c872e249a8 Mon Sep 17 00:00:00 2001 From: Devdutt Shenoi Date: Thu, 16 Jan 2025 18:21:13 +0530 Subject: [PATCH 2/5] fix: missing bash dep --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3f3868c26..e55dddc1c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ LABEL org.opencontainers.image.vendor="Parseable Inc" LABEL org.opencontainers.image.licenses="AGPL-3.0" # Install dependencies for build -RUN apk add --no-cache musl-dev gcc git +RUN apk add --no-cache musl-dev gcc git bash WORKDIR /parseable COPY . . From f67a7b7e00a9efd8ccea7471a571977d1726c037 Mon Sep 17 00:00:00 2001 From: Devdutt Shenoi Date: Sat, 18 Jan 2025 02:53:01 +0530 Subject: [PATCH 3/5] fix: alpine deps --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e55dddc1c..f340f4b5f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,7 +22,7 @@ LABEL org.opencontainers.image.vendor="Parseable Inc" LABEL org.opencontainers.image.licenses="AGPL-3.0" # Install dependencies for build -RUN apk add --no-cache musl-dev gcc git bash +RUN apk add --no-cache build-base git bash WORKDIR /parseable COPY . . From 5a352e3afe1844d032dbfdec33ff640ca57c774f Mon Sep 17 00:00:00 2001 From: Devdutt Shenoi Date: Mon, 17 Feb 2025 10:11:35 +0530 Subject: [PATCH 4/5] build main image `FROM scratch` --- Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2cc17ec78..09acd221f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -34,12 +34,12 @@ RUN mkdir src && echo "fn main() {}" > src/main.rs && cargo build --release && r COPY src ./src RUN cargo build --release -# Final stage with a minimal runtime image -FROM alpine:latest +# Final stage as base-image +FROM scratch -WORKDIR /parseable +WORKDIR / # Copy the static binary into the final image -COPY --from=builder /parseable/target/release/parseable /usr/bin/parseable +COPY --from=builder /parseable/target/release/parseable /parseable -CMD ["/usr/bin/parseable"] +ENTRYPOINT ["/parseable"] From a4d8fe0d35be5c9ef7fb7ed7c953adcea6870d06 Mon Sep 17 00:00:00 2001 From: Devdutt Shenoi Date: Mon, 17 Feb 2025 11:12:14 +0530 Subject: [PATCH 5/5] alpine in debug container --- Dockerfile.debug | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/Dockerfile.debug b/Dockerfile.debug index c58220408..89064644d 100644 --- a/Dockerfile.debug +++ b/Dockerfile.debug @@ -14,13 +14,16 @@ # along with this program. If not, see . # build stage -FROM rust:1.84.0-bookworm AS builder +FROM rust:1.84.0-alpine AS builder LABEL org.opencontainers.image.title="Parseable" LABEL maintainer="Parseable Team " LABEL org.opencontainers.image.vendor="Parseable Inc" LABEL org.opencontainers.image.licenses="AGPL-3.0" +# Install dependencies for build +RUN apk add --no-cache build-base git bash + WORKDIR /parseable # Cache dependencies @@ -32,9 +35,9 @@ COPY src ./src RUN cargo build # final stage -FROM docker.io/debian:bookworm-slim +FROM alpine:latest -RUN apt update && apt install -y curl +RUN apk add --no-cache curl WORKDIR /parseable