mirror of
https://github.com/open-goal/jak-project.git
synced 2024-11-22 21:59:53 +00:00
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
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:
parent
b6f25bf6d6
commit
58467c50fc
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user