-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Wojciech Madry <[email protected]>
- Loading branch information
1 parent
fcbf12d
commit 4dce4f8
Showing
6 changed files
with
49 additions
and
86 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
FROM ubuntu:22.04 | ||
|
||
WORKDIR /ws | ||
|
||
RUN apt update \ | ||
&& apt upgrade -y\ | ||
&& apt install -y\ | ||
cmake \ | ||
ninja-build \ | ||
gcc \ | ||
git \ | ||
libudev-dev \ | ||
libopenal-dev \ | ||
libvorbis-dev \ | ||
libflac-dev \ | ||
libx11-dev \ | ||
libxcursor-dev \ | ||
libxrandr-dev \ | ||
libfreetype-dev \ | ||
libopengl-dev \ | ||
libglx-dev \ | ||
libgl1-mesa-dev | ||
|
||
ENV CC=gcc | ||
ENV CXX=g++ | ||
ENV BRANCH=master | ||
|
||
RUN git clone https://github.com/wojciechmadry/Kulki.git \ | ||
&& cd Kulki \ | ||
&& git checkout ${BRANCH} \ | ||
&& git submodule init \ | ||
&& git submodule update \ | ||
&& mkdir -p build \ | ||
&& cd build \ | ||
&& cmake -GNinja ../ \ | ||
&& ninja | ||
|