forked from ocaml-sf/learn-ocaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
72 lines (49 loc) · 1.72 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
FROM ocaml/opam2:alpine-3.7 as compilation
LABEL Description="learn-ocaml building" Vendor="OCamlPro"
WORKDIR learn-ocaml
COPY learn-ocaml.opam learn-ocaml.opam.locked ./
RUN sudo chown -R opam:nogroup .
ENV OPAMYES true
RUN echo 'archive-mirrors: [ "https://opam.ocaml.org/cache" ]' >> ~/.opam/config
RUN opam repository set-url default http://opam.ocaml.org
RUN opam switch 4.05
RUN echo 'pre-session-commands: ["sudo" "apk" "add" depexts]' >>~/.opam/config
RUN opam install . --deps-only --locked
ADD static static
ADD translations translations
ADD src src
ADD scripts scripts
ADD Makefile Makefile
ADD demo-repository demo-repository
ADD dune-project dune-project
ADD dune dune
RUN sudo chown -R opam:nogroup .
ENV OPAMVERBOSE 1
RUN opam install . --destdir /home/opam/install-prefix --locked
FROM alpine:3.7 as program
LABEL Description="learn-ocaml app manager" Vendor="OCamlPro"
RUN apk update
RUN apk add ncurses-libs libev dumb-init git
RUN addgroup learn-ocaml
RUN adduser learn-ocaml -DG learn-ocaml
VOLUME ["/repository"]
RUN mkdir -p /sync && chown learn-ocaml:learn-ocaml /sync
VOLUME ["/sync"]
EXPOSE 8080
EXPOSE 8443
USER learn-ocaml
WORKDIR /home/learn-ocaml
COPY --from=compilation /home/opam/install-prefix /usr
CMD ["build","serve"]
ENTRYPOINT ["dumb-init","learn-ocaml","--sync-dir=/sync","--repo=/repository"]
FROM alpine:3.7 as client
LABEL Description="learn-ocaml command-line client" Vendor="OCamlPro"
RUN apk update
RUN apk add ncurses-libs libev dumb-init
RUN addgroup learn-ocaml
RUN adduser learn-ocaml -DG learn-ocaml
VOLUME ["/learnocaml"]
USER learn-ocaml
WORKDIR /learnocaml
COPY --from=compilation /home/opam/install-prefix/bin/learn-ocaml-client /usr/bin
ENTRYPOINT ["dumb-init","learn-ocaml-client"]