Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

REFACTOR reorg dockerfile for better caching #43

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
FROM debian:stable-20250317 AS builder

# Install system dependencies
RUN apt-get update && \
DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
git opam ca-certificates wget m4 build-essential && \
rm -rf /var/lib/apt/lists/*

WORKDIR /oiq
COPY ./ /oiq

# Initialize OPAM and install packages
RUN opam init --disable-sandboxing -a -y && \
eval "$(opam env)" && \
opam install -y \
Expand All @@ -22,12 +21,16 @@ RUN opam init --disable-sandboxing -a -y && \
ppx_deriving \
ppx_deriving_yojson \
uri \
yojson && \
yojson

# Copy the source code and build
WORKDIR /oiq
COPY ./ /oiq
RUN eval "$(opam env)" && \
pds && \
make release

# Final image
FROM gcr.io/distroless/base-debian12

COPY --from=builder /oiq/build/release/oiq_cli/oiq_cli.native /usr/local/bin/oiq

ENTRYPOINT ["/usr/local/bin/oiq"]