diff --git a/Dockerfile.base b/Dockerfile.base index b13ed79..e13e311 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -1,3 +1,9 @@ FROM ubuntu:20.04 RUN apt-get update + +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools RUN apt-get install -y make git python3 diff --git a/Dockerfile.base b/Dockerfile.base index b13ed79..e13e311 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -1,3 +1,9 @@ FROM ubuntu:20.04 RUN apt-get update + +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools RUN apt-get install -y make git python3 diff --git a/Dockerfile.build b/Dockerfile.build index 6ea66db..608363e 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -1,12 +1,23 @@ FROM ubuntu:20.04 RUN apt-get update +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools +RUN apt-get install -y make git python3 + +# Install Tools +RUN apt-get install -y cmake doxygen graphviz + # Install Linting Tools -RUN apt-get install -y clang clang-tidy clang-format make git python3 +RUN apt-get install -y clang clang-tidy clang-format # Install Build Tools -RUN apt-get install -y g++ gcc gdb flex bison -RUN apt-get install -y mingw-w64-common mingw-w64-tools mingw-w64 mingw-w64-i686-dev mingw-w64-x86-64-dev -RUN apt-get install -y curl wget cmake -RUN apt-get install -y doxygen graphviz +RUN apt-get install -y g++ gcc +# Install Build Tools +RUN apt-get install -y gdb flex bison +RUN apt-get install -y mingw-w64-common mingw-w64-tools mingw-w64 mingw-w64-i686-dev mingw-w64-x86-64-dev +RUN apt-get install -y curl wget diff --git a/Dockerfile.base b/Dockerfile.base index b13ed79..e13e311 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -1,3 +1,9 @@ FROM ubuntu:20.04 RUN apt-get update + +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools RUN apt-get install -y make git python3 diff --git a/Dockerfile.build b/Dockerfile.build index 6ea66db..608363e 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -1,12 +1,23 @@ FROM ubuntu:20.04 RUN apt-get update +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools +RUN apt-get install -y make git python3 + +# Install Tools +RUN apt-get install -y cmake doxygen graphviz + # Install Linting Tools -RUN apt-get install -y clang clang-tidy clang-format make git python3 +RUN apt-get install -y clang clang-tidy clang-format # Install Build Tools -RUN apt-get install -y g++ gcc gdb flex bison -RUN apt-get install -y mingw-w64-common mingw-w64-tools mingw-w64 mingw-w64-i686-dev mingw-w64-x86-64-dev -RUN apt-get install -y curl wget cmake -RUN apt-get install -y doxygen graphviz +RUN apt-get install -y g++ gcc +# Install Build Tools +RUN apt-get install -y gdb flex bison +RUN apt-get install -y mingw-w64-common mingw-w64-tools mingw-w64 mingw-w64-i686-dev mingw-w64-x86-64-dev +RUN apt-get install -y curl wget diff --git a/Dockerfile.build.linux b/Dockerfile.build.linux index 14583eb..1cc5fb4 100644 --- a/Dockerfile.build.linux +++ b/Dockerfile.build.linux @@ -1,10 +1,15 @@ FROM ubuntu:20.04 RUN apt-get update -RUN apt-get install -y make git python3 -# Install Build Tools -RUN apt-get install -y g++ gcc +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools +RUN apt-get install -y make git python3 # Install Tools RUN apt-get install -y cmake doxygen graphviz +# Install Build Tools +RUN apt-get install -y g++ gcc diff --git a/Dockerfile.base b/Dockerfile.base index b13ed79..e13e311 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -1,3 +1,9 @@ FROM ubuntu:20.04 RUN apt-get update + +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools RUN apt-get install -y make git python3 diff --git a/Dockerfile.build b/Dockerfile.build index 6ea66db..608363e 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -1,12 +1,23 @@ FROM ubuntu:20.04 RUN apt-get update +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools +RUN apt-get install -y make git python3 + +# Install Tools +RUN apt-get install -y cmake doxygen graphviz + # Install Linting Tools -RUN apt-get install -y clang clang-tidy clang-format make git python3 +RUN apt-get install -y clang clang-tidy clang-format # Install Build Tools -RUN apt-get install -y g++ gcc gdb flex bison -RUN apt-get install -y mingw-w64-common mingw-w64-tools mingw-w64 mingw-w64-i686-dev mingw-w64-x86-64-dev -RUN apt-get install -y curl wget cmake -RUN apt-get install -y doxygen graphviz +RUN apt-get install -y g++ gcc +# Install Build Tools +RUN apt-get install -y gdb flex bison +RUN apt-get install -y mingw-w64-common mingw-w64-tools mingw-w64 mingw-w64-i686-dev mingw-w64-x86-64-dev +RUN apt-get install -y curl wget diff --git a/Dockerfile.build.linux b/Dockerfile.build.linux index 14583eb..1cc5fb4 100644 --- a/Dockerfile.build.linux +++ b/Dockerfile.build.linux @@ -1,10 +1,15 @@ FROM ubuntu:20.04 RUN apt-get update -RUN apt-get install -y make git python3 -# Install Build Tools -RUN apt-get install -y g++ gcc +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools +RUN apt-get install -y make git python3 # Install Tools RUN apt-get install -y cmake doxygen graphviz +# Install Build Tools +RUN apt-get install -y g++ gcc diff --git a/Dockerfile.build.macosx b/Dockerfile.build.macosx index d7861d8..f240b82 100644 --- a/Dockerfile.build.macosx +++ b/Dockerfile.build.macosx @@ -1,7 +1,16 @@ FROM ubuntu:20.04 RUN apt-get update + +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools RUN apt-get install -y make git python3 +# Install Tools +RUN apt-get install -y cmake doxygen graphviz + # Install Linting Tools RUN apt-get install -y clang clang-tidy clang-format @@ -14,7 +23,3 @@ # Configure Environment Variables ENV LD_LIBRARY_PATH="/osxcross/lib:${LD_LIBRARY_PATH}" ENV PATH="/osxcross/bin:${PATH}" - -# Install Tools -RUN apt-get install -y cmake doxygen graphviz - diff --git a/Dockerfile.base b/Dockerfile.base index b13ed79..e13e311 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -1,3 +1,9 @@ FROM ubuntu:20.04 RUN apt-get update + +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools RUN apt-get install -y make git python3 diff --git a/Dockerfile.build b/Dockerfile.build index 6ea66db..608363e 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -1,12 +1,23 @@ FROM ubuntu:20.04 RUN apt-get update +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools +RUN apt-get install -y make git python3 + +# Install Tools +RUN apt-get install -y cmake doxygen graphviz + # Install Linting Tools -RUN apt-get install -y clang clang-tidy clang-format make git python3 +RUN apt-get install -y clang clang-tidy clang-format # Install Build Tools -RUN apt-get install -y g++ gcc gdb flex bison -RUN apt-get install -y mingw-w64-common mingw-w64-tools mingw-w64 mingw-w64-i686-dev mingw-w64-x86-64-dev -RUN apt-get install -y curl wget cmake -RUN apt-get install -y doxygen graphviz +RUN apt-get install -y g++ gcc +# Install Build Tools +RUN apt-get install -y gdb flex bison +RUN apt-get install -y mingw-w64-common mingw-w64-tools mingw-w64 mingw-w64-i686-dev mingw-w64-x86-64-dev +RUN apt-get install -y curl wget diff --git a/Dockerfile.build.linux b/Dockerfile.build.linux index 14583eb..1cc5fb4 100644 --- a/Dockerfile.build.linux +++ b/Dockerfile.build.linux @@ -1,10 +1,15 @@ FROM ubuntu:20.04 RUN apt-get update -RUN apt-get install -y make git python3 -# Install Build Tools -RUN apt-get install -y g++ gcc +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools +RUN apt-get install -y make git python3 # Install Tools RUN apt-get install -y cmake doxygen graphviz +# Install Build Tools +RUN apt-get install -y g++ gcc diff --git a/Dockerfile.build.macosx b/Dockerfile.build.macosx index d7861d8..f240b82 100644 --- a/Dockerfile.build.macosx +++ b/Dockerfile.build.macosx @@ -1,7 +1,16 @@ FROM ubuntu:20.04 RUN apt-get update + +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools RUN apt-get install -y make git python3 +# Install Tools +RUN apt-get install -y cmake doxygen graphviz + # Install Linting Tools RUN apt-get install -y clang clang-tidy clang-format @@ -14,7 +23,3 @@ # Configure Environment Variables ENV LD_LIBRARY_PATH="/osxcross/lib:${LD_LIBRARY_PATH}" ENV PATH="/osxcross/bin:${PATH}" - -# Install Tools -RUN apt-get install -y cmake doxygen graphviz - diff --git a/Dockerfile.build.windows b/Dockerfile.build.windows index 09eae36..e4925d7 100644 --- a/Dockerfile.build.windows +++ b/Dockerfile.build.windows @@ -1,10 +1,15 @@ FROM ubuntu:20.04 RUN apt-get update -RUN apt-get install -y make git python3 -# Install Build Tools -RUN apt-get install -y mingw-w64-common mingw-w64-tools mingw-w64 mingw-w64-i686-dev mingw-w64-x86-64-dev +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools +RUN apt-get install -y make git python3 # Install Tools RUN apt-get install -y cmake doxygen graphviz +# Install Build Tools +RUN apt-get install -y mingw-w64-common mingw-w64-tools mingw-w64 mingw-w64-i686-dev mingw-w64-x86-64-dev diff --git a/Dockerfile.base b/Dockerfile.base index b13ed79..e13e311 100644 --- a/Dockerfile.base +++ b/Dockerfile.base @@ -1,3 +1,9 @@ FROM ubuntu:20.04 RUN apt-get update + +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools RUN apt-get install -y make git python3 diff --git a/Dockerfile.build b/Dockerfile.build index 6ea66db..608363e 100644 --- a/Dockerfile.build +++ b/Dockerfile.build @@ -1,12 +1,23 @@ FROM ubuntu:20.04 RUN apt-get update +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools +RUN apt-get install -y make git python3 + +# Install Tools +RUN apt-get install -y cmake doxygen graphviz + # Install Linting Tools -RUN apt-get install -y clang clang-tidy clang-format make git python3 +RUN apt-get install -y clang clang-tidy clang-format # Install Build Tools -RUN apt-get install -y g++ gcc gdb flex bison -RUN apt-get install -y mingw-w64-common mingw-w64-tools mingw-w64 mingw-w64-i686-dev mingw-w64-x86-64-dev -RUN apt-get install -y curl wget cmake -RUN apt-get install -y doxygen graphviz +RUN apt-get install -y g++ gcc +# Install Build Tools +RUN apt-get install -y gdb flex bison +RUN apt-get install -y mingw-w64-common mingw-w64-tools mingw-w64 mingw-w64-i686-dev mingw-w64-x86-64-dev +RUN apt-get install -y curl wget diff --git a/Dockerfile.build.linux b/Dockerfile.build.linux index 14583eb..1cc5fb4 100644 --- a/Dockerfile.build.linux +++ b/Dockerfile.build.linux @@ -1,10 +1,15 @@ FROM ubuntu:20.04 RUN apt-get update -RUN apt-get install -y make git python3 -# Install Build Tools -RUN apt-get install -y g++ gcc +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools +RUN apt-get install -y make git python3 # Install Tools RUN apt-get install -y cmake doxygen graphviz +# Install Build Tools +RUN apt-get install -y g++ gcc diff --git a/Dockerfile.build.macosx b/Dockerfile.build.macosx index d7861d8..f240b82 100644 --- a/Dockerfile.build.macosx +++ b/Dockerfile.build.macosx @@ -1,7 +1,16 @@ FROM ubuntu:20.04 RUN apt-get update + +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools RUN apt-get install -y make git python3 +# Install Tools +RUN apt-get install -y cmake doxygen graphviz + # Install Linting Tools RUN apt-get install -y clang clang-tidy clang-format @@ -14,7 +23,3 @@ # Configure Environment Variables ENV LD_LIBRARY_PATH="/osxcross/lib:${LD_LIBRARY_PATH}" ENV PATH="/osxcross/bin:${PATH}" - -# Install Tools -RUN apt-get install -y cmake doxygen graphviz - diff --git a/Dockerfile.build.windows b/Dockerfile.build.windows index 09eae36..e4925d7 100644 --- a/Dockerfile.build.windows +++ b/Dockerfile.build.windows @@ -1,10 +1,15 @@ FROM ubuntu:20.04 RUN apt-get update -RUN apt-get install -y make git python3 -# Install Build Tools -RUN apt-get install -y mingw-w64-common mingw-w64-tools mingw-w64 mingw-w64-i686-dev mingw-w64-x86-64-dev +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools +RUN apt-get install -y make git python3 # Install Tools RUN apt-get install -y cmake doxygen graphviz +# Install Build Tools +RUN apt-get install -y mingw-w64-common mingw-w64-tools mingw-w64 mingw-w64-i686-dev mingw-w64-x86-64-dev diff --git a/Dockerfile.lint b/Dockerfile.lint index 44f4ef9..e17e2d9 100644 --- a/Dockerfile.lint +++ b/Dockerfile.lint @@ -1,10 +1,15 @@ FROM ubuntu:20.04 RUN apt-get update -RUN apt-get install -y make git python3 -# Install Linting Tools -RUN apt-get install -y clang clang-tidy clang-format +# Set noninteractive installation +ARG DEBIAN_FRONTEND=noninteractive +ENV TZ=Australia/Brisbane + +# Install Base Build Tools +RUN apt-get install -y make git python3 # Install Tools RUN apt-get install -y cmake doxygen graphviz +# Install Linting Tools +RUN apt-get install -y clang clang-tidy clang-format