https://github.com/adamhathcock/cake-build
Docker Container with .NET Core 1 and 2 for Cake builds
https://github.com/adamhathcock/cake-build
Last synced: 7 months ago
JSON representation
Docker Container with .NET Core 1 and 2 for Cake builds
- Host: GitHub
- URL: https://github.com/adamhathcock/cake-build
- Owner: adamhathcock
- Created: 2017-12-08T09:15:13.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-11T08:22:25.000Z (over 7 years ago)
- Last Synced: 2025-01-16T11:25:57.708Z (9 months ago)
- Language: Makefile
- Size: 1.95 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cake build container
This is a Docker container with both .NET Core 1 and 2 installed to run [Cake](https://cakebuild.net/) with a .NET Core 2 project.
Uses a Ubuntu 16.04 base image. At Docker hub: [https://hub.docker.com/r/adamhathcock/cake-build/](https://hub.docker.com/r/adamhathcock/cake-build/)
## Sample CircleCI 2.0 Config
```yml
version: 2
jobs:
build:
docker:
- image: adamhathcock/cake-build:latest
steps:
- checkout
- run:
name: Build
command: ./build.sh
```