diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..4ea6564 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,16 @@ +FROM ubuntu:22.04 +WORKDIR /tmp +RUN apt update -y +RUN apt install -y build-essential cmake g++-12 libomp-dev +RUN DEBIAN_FRONTEND="noninteractive" apt install -y libgdiplus libwine-dev locales fontconfig +ADD . /tmp/nQuantCpp +WORKDIR /tmp/nQuantCpp +RUN cmake -S . -B ../build +# RUN cmake --build ../build +# RUN cp *.gif /tmp/build/nQuantCpp/ +# WORKDIR /tmp/build/nQuantCpp +# docker system prune -a +# docker build -t nquantcpp . +# docker run -it nquantcpp bash +# docker cp :/file/path/within/container /host/path/target +# docker cp foo.txt :/foo.txt