dotnet-docker VS sdk

Compare dotnet-docker vs sdk and see what are their differences.

dotnet-docker

Docker images for .NET and the .NET Tools. (by dotnet)

sdk

Core functionality needed to create .NET Core projects, that is shared between Visual Studio and CLI (by dotnet)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
dotnet-docker sdk
24 113
4,228 2,540
0.9% 1.1%
9.4 10.0
3 days ago 5 days ago
Dockerfile C#
MIT License MIT License
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

dotnet-docker

Posts with mentions or reviews of dotnet-docker. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-19.
  • Exploring .NET 8 Preview 3: The 7 Features You Need to Know
    2 projects | dev.to | 19 Apr 2023
    This cool method lets you whip up optimized apps that get along swimmingly with Docker. Neat, huh? --platform values. Take a peek at this sample to see the pattern in action!
  • Need Help with C# on raspberry
    2 projects | /r/csharp | 31 Mar 2023
    You can also use the .NET Docker images to run (or build from source and then run) .NET applications.
  • Portability is a nightmare
    1 project | /r/ProgrammerHumor | 16 Mar 2023
    Sadly, lots of dotnet apps still out there. Luckily, there's a container for that too!
  • SSL Connection Issue on Lidarr startup (Raspberry Pi 4)
    2 projects | /r/Lidarr | 1 Feb 2023
    A search of "alpine 3.17 ssl" brings up this link that shows the same error.
  • (.NET/Azure) Docker mentor
    1 project | /r/docker | 29 Nov 2022
    Actually, it looks like I am a bit out of the loop, and there is an official .NET runtime for Linux, so you can use it like any other Linux docker images. Looks like there are examples here: https://github.com/dotnet/dotnet-docker
  • Is this Dockerfile ready for production? Is the container automatically secure?
    3 projects | /r/dotnet | 22 Oct 2022
    It is good that you are thinking about security 😊. there is an issue in dotnet repo here https://github.com/dotnet/dotnet-docker/issues/1772 that have hardened examples.
  • Why the fuck did Microsoft name everything .NET?
    1 project | /r/csharp | 26 Aug 2022
    You can use .NET without using ASP.NET Core (yes, the names are confusing right now, they dropped the "Core" suffix for the platform but did not drop the suffix for the web framework). Microsoft publishes a Docker image for .NET for when you just want to run some compiled CIL, but they also provide a Docker image where it includes .NET and ASP.NET Core for when you run a compiled ASP.NET Core web app. (https://hub.docker.com/_/microsoft-dotnet/)
  • Multi-Image Docker Images: Using COPY with Images directly from registries
    1 project | dev.to | 24 Jun 2022
    Keeping the whole Maritime theme alive with Docker (and Kubernetes), I jumped into the sea of Docker Hub with millions of containers and found out that Microsoft hosts all the .NET related container images as .NET by Microsoft registry.
  • Docker multi-architecture, .NET 6.0 and OpenCVSharp
    6 projects | dev.to | 17 May 2022
    ARG OPENCV_SHARP_BUILD_TAG=2 ARG SDK_VERSION=6.0.202-bullseye-slim-amd64 ARG RUNTIME_VERSION=6.0.4-bullseye-slim FROM syamaner/opencvsharp-build:$OPENCV_SHARP_BUILD_TAG AS opencv # Given we are building a .Net application, the build does not have to be in the target architecture. # Reference: https://github.com/dotnet/dotnet-docker/issues/1537#issuecomment-755351628 FROM mcr.microsoft.com/dotnet/sdk:$SDK_VERSION as build ARG TARGETPLATFORM WORKDIR /src COPY . . # Select the correct RID for the target architecture. # run dotnet publish as usual and pass the RID. RUN if [ "$TARGETPLATFORM" = "linux/amd64" ]; then \ RID=linux-x64 ; \ elif [ "$TARGETPLATFORM" = "linux/arm64" ]; then \ RID=linux-arm64 ; \ elif [ "$TARGETPLATFORM" = "linux/arm/v7" ]; then \ RID=linux-arm ; \ fi && \ dotnet publish -c release -o /app -r $RID --self-contained false # Copy the application as well as native dependencies to the final stage and build the final image without any unnecessary files. FROM mcr.microsoft.com/dotnet/runtime:$RUNTIME_VERSION as final WORKDIR /app # Copy opencv sharp native binding and runtime dependencies. COPY --from=opencv /artifacts/ /usr/lib/ RUN ldconfig COPY --from=build /app/ /app/ ENTRYPOINT [ "dotnet", "/app/OpenCVSharpBenchmarkApp.dll" ]
  • Dockerizing ASP.NET hello world - few questions from .NET newbie
    2 projects | /r/docker | 7 May 2022

sdk

Posts with mentions or reviews of sdk. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-06.
  • Programmatically elevate a .NET application on any platform
    2 projects | dev.to | 6 Feb 2024
    [DllImport("libc")] private static extern uint geteuid(); public bool IsCurrentProcessElevated() { if (RuntimeInformation.IsOSPlatform(OSPlatform.Windows)) { // https://github.com/dotnet/sdk/blob/v6.0.100/src/Cli/dotnet/Installer/Windows/WindowsUtils.cs#L38 using var identity = WindowsIdentity.GetCurrent(); var principal = new WindowsPrincipal(identity); return principal.IsInRole(WindowsBuiltInRole.Administrator); } // https://github.com/dotnet/maintenance-packages/blob/62823150914410d43a3fd9de246d882f2a21d5ef/src/Common/tests/TestUtilities/System/PlatformDetection.Unix.cs#L58 // 0 is the ID of the root user return geteuid() == 0; }
  • Swift was always going to be part of the OS
    3 projects | news.ycombinator.com | 16 Dec 2023
    > There's definitely things they tried to improve on that... weren't really improvements. The way "assemblies" are matched in .NET is much more sophisticated- the goal there was to try to kill DLL hell. It evolved into the Global Assembly Cache, which is sort of the Windows Registry of DLLs. Not a huge fan of those bits.

    The Global Assembly Cache did not make the jump to the modern .NET (Core). There was the thing called `dotnet store`, but it’s broken since .NET 6: https://github.com/dotnet/sdk/issues/24752

    The assembly redirection hell has also been greatly reduced there.

  • .NET Blazor
    7 projects | news.ycombinator.com | 21 Nov 2023
    I do the same.

    I have a small write-up here: https://chrlschn.dev/blog/2023/10/end-to-end-type-safety-wit...

    You get end-to-end type safety (even better once you connect it to EF Core since you get it all ways to your DB).

    With this setup with hot-reload (currently broken in .NET 8 [0]), productivity is really, really good. Like tRPC but with one of the most powerful ORMs out there right now.

    [0] https://github.com/dotnet/sdk/issues/36918

  • Why does dotnet cli not support updating sdk's?
    1 project | /r/dotnet | 16 Nov 2023
    Noticed an open issue just now.
  • .NET 8 – .NET Blog
    12 projects | news.ycombinator.com | 14 Nov 2023
    You're thinking of https://github.com/dotnet/sdk/issues/22247
  • LÖVE: a framework to make 2D games in Lua
    26 projects | news.ycombinator.com | 13 Sep 2023
    That's a twisted and wrong narrative

    Unity like refers to a Editor driven approach

    Unity became popular with its moonscript language (javascript like), they then ditched it to focus on C#, but what propelled unity to what it is today is the Editor driven approach, not c#, not DOTS

    They are forced to transpile C# to C++ via IL2CPP as a result to target consoles/mobiles

    C# is a disease when it comes to console/mobile support

    It's a substantial dependency, quite heavy

    And you are not free of unity like fuck ups, it's a microsoft language after all:

    https://github.com/dotnet/sdk/issues/22247

    And let's not forget when they changed the license of their debugger overnight to prevent people from using it in their products (jetbrains for example)

    And them deprecating open source tooling to a proprietary/closed one for vscode (c# devkit)

    Let's be careful when we recommend evil as an alternative to evil ;)

  • How to run multiple programs like python3 filename.py???
    1 project | /r/csharp | 21 May 2023
    The script can be found at the end of the thread here https://github.com/dotnet/sdk/issues/8742
  • Writing Python like it's Rust
    10 projects | news.ycombinator.com | 21 May 2023
    Another difference you might be surprised by is that the .NET tooling by default collects various data from your system and sends it to Microsoft [1]. If you want to avoid this (and still want to use .NET) you'll have to make sure that the environment variable DOTNET_CLI_TELEMETRY_OPTOUT is set in all contexts before touching anything.

    [1] https://github.com/dotnet/sdk/issues/6145

  • .NET 8 is on the way! +10 Features that will blow your mind 🤯
    3 projects | dev.to | 18 May 2023
    SDK Pull Request
  • Disadvantages of using F# with Mono?
    2 projects | /r/fsharp | 7 May 2023
    Pretty sure the final file referenced here https://github.com/dotnet/sdk/issues/8742 is the one I am thinking of.

What are some alternatives?

When comparing dotnet-docker and sdk you can also consider the following projects:

OpenCvSharp - OpenCV wrapper for .NET

kdmapper - KDMapper is a simple tool that exploits iqvw64e.sys Intel driver to manually map non-signed drivers in memory

docker-multi-arch-opencvsharp - A demonstration of Docker multi architecture build for native dependencies for amd64, amrm64 and arm32 architecture

MQTTnet - MQTTnet is a high performance .NET library for MQTT based communication. It provides a MQTT client and a MQTT server (broker). The implementation is based on the documentation from http://mqtt.org/.

opencv_contrib - Repository for OpenCV's extra modules

ASP.NET Core - ASP.NET Core is a cross-platform .NET framework for building modern cloud-based web applications on Windows, Mac, or Linux.

dotnet-framework-docker - The repo for the official docker images for .NET Framework on Windows Server Core.

.NET Runtime - .NET is a cross-platform runtime for cloud, mobile, desktop, and IoT apps.

OpenCV - Open Source Computer Vision Library

vscodium - binary releases of VS Code without MS branding/telemetry/licensing

BenchmarkDotNet - Powerful .NET library for benchmarking

CoreCLR - CoreCLR is the runtime for .NET Core. It includes the garbage collector, JIT compiler, primitive data types and low-level classes.