forked from ocaml/ocaml.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Dockerfile
38 lines (24 loc) · 999 Bytes
/
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
FROM ocaml/opam:alpine-3.17-ocaml-4.14 as build
# Install system dependencies
RUN sudo apk update && sudo apk add --update libev-dev openssl-dev gmp-dev oniguruma-dev
# freeze branch was opam-repo HEAD at the time of commit
RUN cd ~/opam-repository && git checkout -b freeze b457e9f3d6 && opam update
WORKDIR /home/opam
# Install Opam dependencies
ADD ocamlorg.opam ocamlorg.opam
RUN opam install . --deps-only
# Build project
COPY --chown=opam:opam . .
RUN opam exec -- dune build @install --profile=release
FROM alpine:3.17 as run
RUN apk update && apk add --update libev gmp git
RUN chmod -R 755 /var
COPY --from=build /home/opam/_build/default/src/ocamlorg_web/bin/main.exe /bin/server
COPY playground/asset playground/asset
RUN git clone https://github.com/ocaml/opam-repository /var/opam-repository
ENV OCAMLORG_REPO_PATH /var/opam-repository/
ENV OCAMLORG_PKG_STATE_PATH /var/package.state
ENV DREAM_VERBOSITY info
ENV OCAMLORG_HTTP_PORT 8080
EXPOSE 8080
ENTRYPOINT /bin/server