forked from CosmosOS/Cosmos
-
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.
yay we have mac support (probably)
- Loading branch information
Showing
1 changed file
with
18 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM ubuntu:latest | ||
|
||
WORKDIR /Cosmos | ||
|
||
RUN apt-get update | ||
RUN apt-get install -y dotnet6 git make xorriso sudo | ||
|
||
RUN git config --global pack.window 1 | ||
|
||
# Cloning Cosmos Repos | ||
RUN git clone https://github.com/CosmosOS/Cosmos.git | ||
RUN git clone https://github.com/CosmosOS/XSharp.git | ||
RUN git clone https://github.com/CosmosOS/IL2CPU.git | ||
RUN git clone https://github.com/CosmosOS/Common.git | ||
|
||
# Run make | ||
WORKDIR /Cosmos | ||
RUN make -C Cosmos |