# docker **Repository Path**: mirrors_mono/docker ## Basic Information - **Project Name**: docker - **Description**: Docker images, for the Docker container system - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-09-25 - **Last Updated**: 2026-01-11 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Mono Docker image This image provides Docker releases of the [Mono Project](http://www.mono-project.com/). > [!IMPORTANT] > This image is deprecated and won't receive updates anymore, see https://github.com/mono/mono/issues/21796 ## Supported tags and versions We push every Mono release to Docker Hub. The latest version, one minor version before that and the last version before a major version bump are periodically rebuilt by Docker Hub to pull in updates from the base Debian image. All other version tags are still available, but won't get those updates so you need to keep your images up to date by running `apt-get update` yourself. We encourage you to move to latest Mono releases as soon as they're available. Starting with Mono 5.2 we provide a `slim` variant which only contains the bare minimum to run a simple console app. You can use this as a base and add just what you need. ## How to use this image This image can be used to run stand-alone Mono console apps or build your projects in a container. ``` FROM mono:latest RUN mono --version RUN msbuild MySolution.sln RUN mono MyConsoleApp.exe ``` ## Credits This Docker image is provided by Xamarin/Microsoft, for users of the Mono Project. Thanks to [Michael Friis](http://friism.com/) for his preliminary work. ## Issues Please report issues on the [GitHub project](https://github.com/mono/docker/issues). ## License This Docker Image is licensed with the Expat License. See the [Mono Project licensing FAQ](http://www.mono-project.com/docs/faq/licensing/) for details on how Mono and associated libraries are licensed.