Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: mirage/mirage
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 9efa77270db6
Choose a base ref
...
head repository: mirage/mirage
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: d2ff0ff347be
Choose a head ref
  • 3 commits
  • 1 file changed
  • 1 contributor

Commits on Mar 7, 2016

  1. Copy the full SHA
    5c268e4 View commit details
  2. Dockerfile: add sudo and vim

    avsm committed Mar 7, 2016
    Copy the full SHA
    e4affe6 View commit details
  3. Merge pull request #507 from avsm/refresh-dockerfile

    Dockerfile: also install xdot for `mirage describe`
    avsm committed Mar 7, 2016
    Copy the full SHA
    d2ff0ff View commit details
Showing with 2 additions and 1 deletion.
  1. +2 −1 Dockerfile
3 changes: 2 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
FROM ocaml/opam
RUN sudo -u opam sh -c "opam depext -u mirage mirage-xen mirage-unix" && \
RUN sudo apt-get update && sudo apt-get install -y xdot vim && \
sudo -u opam sh -c "opam depext -u mirage mirage-xen mirage-unix" && \
sudo -u opam sh -c "opam install -y -j 2 -v mirage mirage-xen mirage-unix" && \
sudo sh -c "mkdir -p /src && chown opam /src"
VOLUME /src