Add the base containerized c toolchain environment

This commit is contained in:
2024-02-14 02:58:33 +01:00
parent c5f8da292d
commit 2224ef7879
9 changed files with 55 additions and 2 deletions

6
dockerfile.c_toolchain Normal file
View File

@@ -0,0 +1,6 @@
FROM ubuntu:18.04
RUN apt-get update && apt-get install -y vim gcc indent clang clang-format gdb binutils
WORKDIR /dmzOS
#Getting prebuilt binary from llvm
COPY ./config/* /root
ENTRYPOINT [ "bash" ]