-
Notifications
You must be signed in to change notification settings - Fork 551
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2928 from abjdev/master
Add Dockerfile so MacOS users can build
- Loading branch information
Showing
2 changed files
with
35 additions
and
1 deletion.
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 yasm binutils | ||
|
||
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 |
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