aboutsummaryrefslogtreecommitdiffstats
path: root/c/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'c/Dockerfile')
-rw-r--r--c/Dockerfile6
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