Skip to content

Commit

Permalink
Merge pull request #26 from squaresLab/update-opam
Browse files Browse the repository at this point in the history
Updated Docker image to use Ubuntu 18.04, OPAM 2.04, and OCaml 4.05.0 (fixes #25)
  • Loading branch information
jlacomis committed May 23, 2019
2 parents 080fd31 + 737a10d commit e720256
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions Dockerfile
@@ -1,17 +1,20 @@
FROM ubuntu:16.04
MAINTAINER Chris Timperley "christimperley@googlemail.com"
FROM ubuntu:18.04

RUN apt-get update && \
apt-get install -y --no-install-recommends software-properties-common && \
add-apt-repository -y ppa:avsm/ppa && \
apt-get update && \
apt-get install -y --no-install-recommends \
opam \
ocaml \
build-essential \
jq \
aspcud \
vim \
gcc \
m4 && \
echo "yes" >> /tmp/yes.txt && \
opam init -y < /tmp/yes.txt && \
opam init --disable-sandboxing -y < /tmp/yes.txt && \
opam install -y cil

RUN mkdir -p /opt/genprog
Expand Down

0 comments on commit e720256

Please sign in to comment.