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 Jan 4, 2025
1 parent 46743d4 commit 455a019
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
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
RUN apt install -y build-essential cmake gcc-12 g++-12 libomp-dev wget
RUN apt install -y libgdiplus locales fontconfig
RUN wget -O - https://dl.winehq.org/wine-builds/winehq.key | apt-key add -
RUN add-apt-repository 'deb https://dl.winehq.org/wine-builds/ubuntu/ jammy main'
RUN apt install -y --install-recommends winehq-stable-dev
ADD . /tmp/nQuantCpp
WORKDIR /tmp/nQuantCpp
RUN cmake -S . -B ../build
Expand Down

0 comments on commit 455a019

Please sign in to comment.