Skip to content

Commit a261e3c

Browse files
committed
Use Debian 13
The Debian 13 version base image seems smaller than the Alpine one. Might give us a smaller image.
1 parent b7abb59 commit a261e3c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# --disable-flat-float-array. This gives a container smaller image overall
33
# but disables OCaml's optimization for float arrays. Does not prevent
44
# float arrays from being used.
5-
FROM docker.io/ocaml/opam:alpine-ocaml-5.4-no-flat-float-array AS builder
5+
FROM docker.io/ocaml/opam:debian-13-ocaml-5.4-no-flat-float-array AS builder
66

77
ENV PATH="/home/opam/.opam/5.4/bin:${PATH}"
88

@@ -19,7 +19,7 @@ RUN chown -R opam:opam /opt/test-runner
1919
COPY runner/ .
2020
RUN dune test && dune build
2121

22-
FROM docker.io/ocaml/opam:alpine-ocaml-5.4-no-flat-float-array AS runner
22+
FROM docker.io/ocaml/opam:debian-13-ocaml-5.4-no-flat-float-array AS runner
2323

2424
ENV PATH="/home/opam/.opam/5.4/bin:${PATH}"
2525

0 commit comments

Comments
 (0)