Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
mcychan authored Dec 29, 2024
1 parent 61a55f4 commit eca2dc3
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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 <containerId>:/file/path/within/container /host/path/target
# docker cp foo.txt <containerId>:/foo.txt

0 comments on commit eca2dc3

Please sign in to comment.