Skip to content

Commit

Permalink
ubuntu Dockerfile fix a missing dependency (#3667)
Browse files Browse the repository at this point in the history
adds libssl-dev to apt-get

i atleast had to add this for the docker image to work
  • Loading branch information
ImaDoor2785 authored Sep 22, 2024
1 parent b6f25bf commit 58467c5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docker/Ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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

0 comments on commit 58467c5

Please sign in to comment.