{"id":15716710,"url":"https://github.com/gableroux/docker-dotnet-mono-monogame","last_synced_at":"2025-04-22T12:43:14.510Z","repository":{"id":145782227,"uuid":"180031689","full_name":"GabLeRoux/docker-dotnet-mono-monogame","owner":"GabLeRoux","description":"Docker image for dotnet + mono + monogame","archived":false,"fork":false,"pushed_at":"2019-04-08T01:52:40.000Z","size":11,"stargazers_count":3,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-29T15:12:07.055Z","etag":null,"topics":["automated-build","dockerimage","dotnet","mono","monogame"],"latest_commit_sha":null,"homepage":"https://cloud.docker.com/repository/docker/gableroux/dotnet-mono-monogame","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/GabLeRoux.png","metadata":{"files":{"readme":"ReadMe.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2019-04-07T22:31:59.000Z","updated_at":"2023-02-05T00:43:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"240d703b-83a6-4ff5-a5d1-623285295552","html_url":"https://github.com/GabLeRoux/docker-dotnet-mono-monogame","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GabLeRoux%2Fdocker-dotnet-mono-monogame","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GabLeRoux%2Fdocker-dotnet-mono-monogame/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GabLeRoux%2Fdocker-dotnet-mono-monogame/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/GabLeRoux%2Fdocker-dotnet-mono-monogame/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/GabLeRoux","download_url":"https://codeload.github.com/GabLeRoux/docker-dotnet-mono-monogame/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250242854,"owners_count":21398210,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["automated-build","dockerimage","dotnet","mono","monogame"],"created_at":"2024-10-03T21:46:45.629Z","updated_at":"2025-04-22T12:43:14.492Z","avatar_url":"https://github.com/GabLeRoux.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Docker image for dotnet + mono + monogame\n\n[![Docker Stars](https://img.shields.io/docker/stars/gableroux/dotnet-mono-monogame.svg)](https://hub.docker.com/r/gableroux/dotnet-mono-monogame)\n[![Docker Pulls](https://img.shields.io/docker/pulls/gableroux/dotnet-mono-monogame.svg)](https://hub.docker.com/r/gableroux/dotnet-mono-monogame)\n[![Docker Automated](https://img.shields.io/docker/automated/gableroux/dotnet-mono-monogame.svg)](https://hub.docker.com/r/gableroux/dotnet-mono-monogame)\n[![Docker Build](https://img.shields.io/docker/build/gableroux/dotnet-mono-monogame.svg)](https://hub.docker.com/r/gableroux/dotnet-mono-monogame)\n[![Image](https://images.microbadger.com/badges/image/gableroux/dotnet-mono-monogame.svg)](https://microbadger.com/images/gableroux/dotnet-mono-monogame)\n[![Version](https://images.microbadger.com/badges/version/gableroux/dotnet-mono-monogame.svg)](https://microbadger.com/images/gableroux/dotnet-mono-monogame)\n[![Layers](https://images.microbadger.com/badges/image/gableroux/dotnet-mono-monogame.svg)](https://microbadger.com/images/gableroux/dotnet-mono-monogame)\n\nThis is a docker image used to build games created with [monogame](http://www.monogame.net/) using `dotnet` command line. It was inspired by [gmantaos/monogame-docker](https://github.com/gmantaos/monogame-docker) and [CL0SeY/dotnet-mono-docker](https://github.com/CL0SeY/dotnet-mono-docker).\n\n## Examples\n\n### Command line\n\n```bash\ndocker pull gableroux/dotnet-mono-monogame:latest\ndocker run --rm -it -v \"$PWD:/app\" gableroux/dotnet-mono-monogame bash\n```\n\nOnce inside the container:\n\n```bash\ncd /app\ndotnet build project_name.csproj\n```\n\n### CircleCI\n\nSee [./examples/circle.yml](examples/circle.yml) and [./examples/build.sh](examples/build.sh)\n\n## Troubleshooting\n\n\u003e Error : Importer 'WavImporter' had unexpected failure! [...] build/MGCB/build/ffprobe [...] Native error= Access denied\n\nThis seems to be a problem with nuget monogame installation during the restore command. It doesn't restore the executable mode on `ffmpeg` and `ffprobe` command lines.\n\n**workaround**:\n\n```bash\nchmod +x /root/.nuget/packages/monogame.content.builder/3.7.0.4/build/MGCB/build/ffprobe\nchmod +x /root/.nuget/packages/monogame.content.builder/3.7.0.4/build/MGCB/build/ffmpeg\n```\n\nRun these two commands right after the restore command.\n\n## License\n\n[MIT](LICENSE.md) © [Gabriel Le Breton](https://gableroux.com)\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgableroux%2Fdocker-dotnet-mono-monogame","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgableroux%2Fdocker-dotnet-mono-monogame","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgableroux%2Fdocker-dotnet-mono-monogame/lists"}