Dockerfile 389 B

123456789101112131415161718192021222324
  1. FROM ubuntu
  2. RUN apt-get update && apt-get install -y \
  3. git \
  4. mercurial \
  5. subversion \
  6. erlang \
  7. build-essential \
  8. autoconf \
  9. automake \
  10. curl \
  11. python-sphinx \
  12. asciidoc \
  13. p7zip-full \
  14. unzip
  15. COPY . /erlang.mk
  16. WORKDIR /erlang.mk
  17. # Run specific test-case with verbose output
  18. # RUN make check c=escript-deps V=4
  19. RUN make check -j 8 -k
  20. RUN make check LEGACY=1 -j 8 -k