-
-
Notifications
You must be signed in to change notification settings - Fork 7
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 #199 from aiarena/chore/integrate-2023-season-3
Integrate 2023 season 3 changes
- Loading branch information
Showing
5 changed files
with
1,346 additions
and
1,248 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
ARG PYTHON_VERSION=3.11 | ||
|
||
FROM python:$PYTHON_VERSION-slim-bullseye | ||
FROM python:$PYTHON_VERSION-slim-bookworm | ||
LABEL AI Arena <[email protected]> | ||
|
||
USER root | ||
|
@@ -45,13 +45,13 @@ RUN dpkg -i packages-microsoft-prod.deb \ | |
&& rm packages-microsoft-prod.deb \ | ||
&& apt-get update \ | ||
# Add NET runtimes | ||
&& apt-get install --no-install-recommends --assume-yes dotnet-runtime-6.0 dotnet-sdk-7.0 \ | ||
&& apt-get install --no-install-recommends --assume-yes dotnet-runtime-6.0 dotnet-sdk-7.0 dotnet-sdk-8.0 \ | ||
# Install ML.NET | ||
&& dotnet tool install -g mlnet-linux-x64 --version 16.15.1 \ | ||
&& rm -rf /var/lib/apt/lists/* | ||
|
||
# Install nodejs | ||
RUN wget -qO- https://deb.nodesource.com/setup_16.x | bash - \ | ||
RUN wget -qO- https://deb.nodesource.com/setup_18.x | bash - \ | ||
&& apt install --assume-yes --no-install-recommends --no-show-upgraded nodejs | ||
|
||
# Add local pyproject.toml and poetry.lock which contain bot requirements | ||
|
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM debian:bullseye-slim | ||
FROM debian:bookworm-slim | ||
LABEL AI Arena <[email protected]> | ||
|
||
USER root | ||
|
Oops, something went wrong.