Skip to content

Commit

Permalink
Update the build image
Browse files Browse the repository at this point in the history
  • Loading branch information
wichtounet committed Jul 5, 2024
1 parent 65b2a61 commit e36944f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit e36944f

Please sign in to comment.