Skip to content

Commit

Permalink
Add Dockerfile
Browse files Browse the repository at this point in the history
yay we have mac support (probably)
  • Loading branch information
abjdev authored Jan 26, 2024
1 parent e85a69c commit e4ed6fd
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions Dockerfile
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

0 comments on commit e4ed6fd

Please sign in to comment.