diff --git a/build/Dockerfile b/build/Dockerfile index 5cadf61..0848ae8 100644 --- a/build/Dockerfile +++ b/build/Dockerfile @@ -1,7 +1,9 @@ FROM ubuntu:latest # Install dependencies -RUN apt-get update && apt-get install -y software-properties-common && add-apt-repository -y ppa:ubuntu-toolchain-r/test && apt-get update && apt-get -y upgrade && apt-get -y install make gcc-13 g++-13 libssl-dev uuid-dev libcurl4-openssl-dev gdb openssl locales python3-pip && update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-13 60 --slave /usr/bin/g++ g++ /usr/bin/g++-13 && pip3 install yfinance && rm -rf /var/lib/apt/lists/* +RUN apt-get update && apt-get -y upgrade && apt-get -y install make gcc-14 g++-14 libssl-dev uuid-dev libcurl4-openssl-dev gdb openssl locales pipx && rm -rf /var/lib/apt/lists/* +RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-14 60 --slave /usr/bin/g++ g++ /usr/bin/g++-14 +RUN pipx install yfinance # Set the locale RUN locale-gen en_US.UTF-8