Commit
Author: Kevin Schoon [kevinschoon@gmail.com]
Hash: a2129914767d4743058570334bb2b5463c5a172b
Timestamp: Wed, 09 Sep 2020 17:52:49 +0000 (4 years ago)

+4 -4 +/-3 browse
update dependencies
1diff --git a/docker/Dockerfile.alpine b/docker/Dockerfile.alpine
2index 87d204b..a00fbcf 100644
3--- a/docker/Dockerfile.alpine
4+++ b/docker/Dockerfile.alpine
5 @@ -2,7 +2,7 @@ FROM ocaml/opam2:alpine
6
7 USER root
8
9- RUN apk --update-cache add m4 linux-headers
10+ RUN apk --update-cache add m4
11
12 # install dependencies first to avoid re-installation
13 # when the a non-opam file in the repository changes.
14 diff --git a/docker/Dockerfile.debian b/docker/Dockerfile.debian
15index f2fdefc..e7de8d7 100644
16--- a/docker/Dockerfile.debian
17+++ b/docker/Dockerfile.debian
18 @@ -2,7 +2,7 @@ FROM ocaml/opam2:debian-stable
19
20 USER root
21
22- RUN apt-get update && apt-get install -yyq linux-headers-amd64 m4 pkg-config
23+ RUN apt-get update && apt-get install -yyq m4 pkg-config
24
25 # install dependencies first to avoid re-installation
26 # when the a non-opam file in the repository changes.
27 diff --git a/note.opam b/note.opam
28index 949702e..482de02 100644
29--- a/note.opam
30+++ b/note.opam
31 @@ -1,4 +1,3 @@
32- # This file is generated by dune, edit dune-project instead
33 opam-version: "2.0"
34 version: "0.0.2"
35 synopsis: "Note is a simple CLI based note taking program"
36 @@ -20,7 +19,7 @@ depends: [
37 "odoc" {with-doc}
38 ]
39 build: [
40- ["dune" "subst"] {dev}
41+ ["dune" "subst"] {pinned}
42 [
43 "dune"
44 "build"
45 @@ -33,4 +32,5 @@ build: [
46 "@doc" {with-doc}
47 ]
48 ]
49+ depexts: ["pkg-config" "m4"]
50 dev-repo: "git+https://github.com/kevinschoon/note.git"