Dockerfile 472 B

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