Skip to content

Commit 65bbf46

Browse files
committed
fix: correct Docker and txt_token_secret
1 parent ab2f47d commit 65bbf46

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ RUN opam install . --destdir /home/opam/install-prefix --locked
3131
FROM alpine:3.13 as client
3232

3333
RUN apk update \
34-
&& apk add ncurses-libs libev dumb-init openssl \
34+
&& apk add ncurses-libs libev gmp dumb-init msmtp git openssl \
3535
&& addgroup learn-ocaml \
3636
&& adduser learn-ocaml -DG learn-ocaml
3737

@@ -53,7 +53,7 @@ LABEL org.opencontainers.image.vendor="The OCaml Software Foundation"
5353
FROM alpine:3.13 as program
5454

5555
RUN apk update \
56-
&& apk add ncurses-libs libev dumb-init git openssl \
56+
&& apk add ncurses-libs libev gmp dumb-init msmtp git openssl \
5757
&& addgroup learn-ocaml \
5858
&& adduser learn-ocaml -DG learn-ocaml
5959

src/app/learnocaml_index_main.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -908,7 +908,7 @@ let set_string_translations () =
908908
[%i"Welcome to Learn OCaml"];
909909
"txt_token_first_connection", [%i"First connection"];
910910
"txt_token_first_connection_dialog", [%i"Choose a nickname"];
911-
"txt_token_secret", [%i"Enter the secret"];
911+
"txt_first_connection_secret", [%i"Enter the secret"];
912912
"txt_token_new", [%i"Create new token"];
913913
"txt_first_connection", [%i"First connection"];
914914
"txt_first_connection_email", [%i"E-mail address"];

0 commit comments

Comments
 (0)