Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,21 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
&& rm -rf /var/lib/apt/lists/* \
&& bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"


### DOTNET ###

ARG DOTNET_VERSION=9.0

RUN apt-get update && apt-get install -y --no-install-recommends \
dotnet-sdk-${DOTNET_VERSION} \
aspnetcore-runtime-${DOTNET_VERSION} \
dotnet-runtime-${DOTNET_VERSION} \
&& rm -rf /var/lib/apt/lists/*

ENV DOTNET_ROOT=/usr/share/dotnet
ENV PATH=$DOTNET_ROOT:$PATH


### SETUP SCRIPTS ###

COPY setup_universal.sh /opt/codex/setup_universal.sh
Expand Down