An open API service indexing awesome lists of open source software.

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

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
```