File tree 4 files changed +5
-7
lines changed
4 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ depends: [
13
13
"cohttp-lwt" {>= "2.5.4"}
14
14
"cohttp-lwt-unix" {>= "2.5.4"}
15
15
"lwt_ssl" {>= "1.1.3"}
16
- "ssl" {= "0.5.9"}
16
+ "ssl" {> = "0.5.9"}
17
17
"stdio" {>= "v0.14.0"}
18
18
"ohex" {>= "0.2.0"}
19
19
"mirage-crypto" {>= "1.0.0"}
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ license: "MIT"
7
7
homepage: "https://github.com/coq/bot"
8
8
bug-reports: "https://github.com/coq/bot/issues"
9
9
depends: [
10
- "ocaml" {>= "4.10"}
11
10
"dune" {>= "2.2"}
12
11
"base" {>= "v0.14.0"}
13
12
"lwt" {>= "5.6.0"}
Original file line number Diff line number Diff line change 12
12
(name coq-bot)
13
13
(synopsis " A (Coq Development Team) bot written in OCaml" )
14
14
( depends
15
- ( ocaml ( >= 4 .10) )
16
15
( dune ( >= 2 .2) )
17
16
( base ( >= v0.14.0) )
18
17
( lwt ( >= 5 .6.0) )
40
39
( cohttp-lwt ( >= 2 .5.4) )
41
40
( cohttp-lwt-unix ( >= 2 .5.4) )
42
41
( lwt_ssl ( >= 1 .1.3) )
43
- ( ssl ( = 0 .5.9) )
42
+ ( ssl ( > = 0 .5.9) )
44
43
( stdio ( >= v0.14.0) )
45
44
( ohex ( >= 0 .2.0) )
46
45
( mirage-crypto ( >= 1 .0.0) )
Original file line number Diff line number Diff line change 1
- FROM ocaml/opam2 :alpine-3.10 -ocaml-4.10 AS builder
1
+ FROM ocaml/opam :alpine-3.20 -ocaml-5.2 AS builder
2
2
3
3
WORKDIR /src
4
4
COPY coq-bot.opam bot-components.opam ./
5
5
6
6
# Install the OCaml libraries needed to compile the program
7
7
RUN echo 'archive-mirrors: [ "https://opam.ocaml.org/cache" ]' >> ~/.opam/config \
8
8
&& opam repository set-url default http://opam.ocaml.org \
9
- && opam switch 4.10 \
9
+ && opam switch 5.2 \
10
10
&& echo 'pre-session-commands: [ "sudo" "apk" "add" depexts ]' >> ~/.opam/config \
11
11
&& OPAMSOLVERTIMEOUT=300 opam install --deps-only .
12
12
@@ -19,7 +19,7 @@ RUN opam install . --destdir /src/opam-install
19
19
RUN OPAMSOLVERTIMEOUT=300 opam depext -ln coq-bot > /src/depexts-coq-bot
20
20
21
21
22
- FROM alpine:3.10 AS app
22
+ FROM alpine:3.20 AS app
23
23
24
24
WORKDIR /app
25
25
You can’t perform that action at this time.
0 commit comments