diff --git a/Dockerfile b/Dockerfile index 4ea6564..240aeb3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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