ubuntu Dockerfile fix a missing dependency (#3667)
Some checks failed
Build / 🖥️ Windows (push) Failing after 2m6s
Build / 🐧 Linux (push) Failing after 3m38s
Build / 🍎 MacOS (push) Failing after 3m39s
Lint / 📝 Formatting (push) Failing after 0s
Lint / 📝 Required Checks (push) Failing after 0s
Lint / 📝 Optional Checks (push) Failing after 0s

adds libssl-dev to apt-get

i atleast had to add this for the docker image to work
This commit is contained in:
Ima_Door 2024-09-21 19:47:50 -06:00 committed by GitHub
parent b6f25bf6d6
commit 58467c50fc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@ FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get update
RUN apt-get install -y gcc make cmake build-essential g++ nasm clang-format libxrandr-dev libxinerama-dev libxcursor-dev libpulse-dev libxi-dev python lld clang curl
RUN apt-get install -y gcc make cmake build-essential g++ nasm clang-format libxrandr-dev libxinerama-dev libxcursor-dev libpulse-dev libxi-dev python lld clang curl libssl-dev libstdc++-10-dev
RUN sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin
@ -21,4 +21,4 @@ WORKDIR /home/$user/jak-project/build
RUN cmake -DCMAKE_SHARED_LINKER_FLAGS="-fuse-ld=lld" -DCMAKE_EXE_LINKER_FLAGS="-fuse-ld=lld" -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ ..
WORKDIR /home/$user/jak-project
RUN cmake -B build && cmake --build build -j 8
RUN cmake -B build && cmake --build build -j 8