Skip to content

Commit

Permalink
fix(CI): fix base Alpine version for final Docker images
Browse files Browse the repository at this point in the history
  • Loading branch information
AltGr committed Jul 25, 2024
1 parent 9da4406 commit 9ba0774
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN cat /proc/cpuinfo /proc/meminfo
RUN opam install . --destdir /home/opam/install-prefix --locked


FROM alpine:3.13 as client
FROM alpine:3.20 as client

RUN apk update \
&& apk add ncurses-libs libev dumb-init libssl3 libcrypto3 \
Expand All @@ -45,7 +45,7 @@ COPY --from=compilation /home/opam/install-prefix/bin/learn-ocaml-client /usr/bi
ENTRYPOINT ["dumb-init","/usr/bin/learn-ocaml-client"]


FROM alpine:3.13 as program
FROM alpine:3.20 as program

RUN apk update \
&& apk add ncurses-libs libev dumb-init git openssl lsof \
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.test-client
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ RUN opam install learn-ocaml-client --destdir /home/opam/install-prefix \
&& ls -l /home/opam/install-prefix/bin/learn-ocaml-client


FROM alpine:3.13 as client
FROM alpine:3.20 as client

ARG BUILD_DATE
ARG VCS_BRANCH
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.test-server
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ RUN opam install learn-ocaml --destdir /home/opam/install-prefix \
&& ls -l /home/opam/install-prefix/bin/learn-ocaml


FROM alpine:3.13 as program
FROM alpine:3.20 as program

ARG BUILD_DATE
ARG VCS_BRANCH
Expand Down

0 comments on commit 9ba0774

Please sign in to comment.