You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
338B

  1. # TODO upgrade to recent Ubuntu version
  2. FROM ubuntu:16.04
  3. ENV LANG C.UTF-8
  4. # User to build toolchains and plugins
  5. RUN groupadd -g 1000 build
  6. RUN useradd --create-home --uid 1000 --gid 1000 --shell /bin/bash build
  7. USER build
  8. WORKDIR /home/build
  9. RUN make toolchain-linux
  10. RUN make toolchain-windows
  11. RUN make toolchain-mac
  12. # TODO untested