diff options
author | terminaldweller <thabogre@gmail.com> | 2021-08-05 05:14:10 +0000 |
---|---|---|
committer | terminaldweller <thabogre@gmail.com> | 2021-08-05 05:14:10 +0000 |
commit | 5f596a3f401a0a40eefcc0f8b6c6b5083748cc1a (patch) | |
tree | a892e31077574f1c1a340af257bb6e27ae0ad89c /c | |
parent | update for neomutt (diff) | |
download | scripts-5f596a3f401a0a40eefcc0f8b6c6b5083748cc1a.tar.gz scripts-5f596a3f401a0a40eefcc0f8b6c6b5083748cc1a.zip |
a lot of updates and fixes
Diffstat (limited to 'c')
-rw-r--r-- | c/Dockerfile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/c/Dockerfile b/c/Dockerfile new file mode 100644 index 0000000..9d16824 --- /dev/null +++ b/c/Dockerfile @@ -0,0 +1,6 @@ +FROM debian:buster-slim +RUN apt update && apt upgrade -y +RUN apt install wget build-essential -y +COPY ./*.cpp ./*.hpp ./makefile /dummy/ +WORKDIR /dummy +RUN make exe CXX=g++ run |