.NET Core is available as docker package (so far only packaged for Debian x64) and build is possible for ARM on Debian/Ubuntu
Is it possible to run this on the RPi LibreELEC environment?
GitHub - dotnet/dotnet-docker: This repo contains the base Docker images for working with .NET Core and the .NET Core Tools.
[Docker][RPi] .NET Core
-
vincent_1234 -
January 18, 2017 at 10:25 AM -
Thread is Unresolved
-
-
- Official Post
Docker ships as an addon for RPi and RPi2.
Native Mono (4.2.1) ships as an addon for all projects.
I hope this answers your question. -
Docker ships as an addon for RPi and RPi2.
Native Mono (4.2.1) ships as an addon for all projects.
I hope this answers your question.Well Mono indeed is capable of running .NET Core projects.
I'm eager to try native .NET Core, however the ARM implementation is still in development stage
Thanks! -
- Official Post
If you share your findings, we may add .NET Core to LE, one way or another.
Thank you in advance.
-
If you share your findings, we may add .NET Core to LE, one way or another.Thank you in advance.
Progress can be tracked here, Enabling Linux ARM32 for .NET Core · Issue #725 · dotnet/core-setup · GitHub
debian/ubuntu are targetted, what is the chance this will run on a stripped down OS like LibreELEC? -
The dotnet core 2 preview for ARM is pretty stable right now.
It was mainly targetted at Ubuntu, however there is a more generic build added lately.
It states: "for glibc based OS"
Is LibreELEC a glibc based OS?GitHub - dotnet/core-setup: Installer packages for the .NET Core runtime and libraries
-
- Official Post
The dotnet core 2 preview for ARM is pretty stable right now.
It was mainly targetted at Ubuntu, however there is a more generic build added lately.
It states: "for glibc based OS"
Is LibreELEC a glibc based OS?GitHub - dotnet/core-setup: Installer packages for the .NET Core runtime and libraries
It is
-
Nice, currently I have a RPi Model B and dotnet core is only for ARMV7 and higher.
The docker file would possibly look like this.
DockerFROM microsoft/dotnet:2.0.0-preview1-runtime RUN apk add --update libunwind libunwind-dev gettext icu-dev lttng-ust-dev curl-openssl-dev openssl-dev util-linux-dev unzip \ && wget https://dotnetcli.blob.core.windows.net/dotnet/master/Binaries/Latest/dotnet-linux-arm.latest-portable.tar.gz \ && mkdir -p /usr/share/dotnet \ && tar -zxf dotnet-linux-arm.latest-portable.tar.gz -C /usr/share/dotnet/ \ && rm dotnet-linux-arm.latest-portable.tar.gz \ && ln -sf /usr/share/dotnet/dotnet /usr/bin/dotnet
From then "dotnet --version" should give you some information
Anyone daring to try this?