-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a Dockerfile to simplify build process
Also, conflict with conduit >= 0.14, as the installation scripts seem to be rather buggy.
- Loading branch information
Showing
5 changed files
with
34 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
FROM debian:stretch | ||
ENV DEBIAN_FRONTEND=noninteractive | ||
RUN apt-get -y update && apt-get -y upgrade && apt-get -y install aspcud zip m4 autoconf opam build-essential gcc-multilib ca-certificates git rsync --no-install-recommends | ||
RUN opam init --comp=4.04.0+32bit | ||
RUN opam pin add -n reactiveData https://github.com/hhugo/reactiveData.git | ||
ADD opam /home/opam/cuekeeper/opam | ||
WORKDIR /home/opam/cuekeeper | ||
RUN opam pin add -n -y cuekeeper . | ||
RUN opam install -y mirage-types-lwt mirage-http ocamlbuild 'conduit=0.13.0' | ||
RUN opam install -y --deps-only cuekeeper | ||
ENTRYPOINT ["opam", "config", "exec", "--"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters