Giter Site home page Giter Site logo

cake-build / docker Goto Github PK

View Code? Open in Web Editor NEW
21.0 21.0 16.0 126 KB

๐Ÿณ ๐Ÿฐ Docker images with Cake tool pre-installed

Home Page: https://cakebuild.net/

License: MIT License

C# 95.54% Dockerfile 4.46%
cake-build docker docker-image docker-images hacktoberfest

docker's People

Contributors

arturcic avatar devlead avatar gitfool avatar skovsende-simcorp avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

docker's Issues

/cake/Cake: Permission denied

/cake/Cake is missing executable permissions. See Cake.Dungeon Docker Job.

~$ docker run --rm -it cakebuild/cake:v0.32.1-2.1-sdk
root@aab27beb84ed:/src# which cake
/cake/cake
root@aab27beb84ed:/src# ls -al /cake/cake
-rwxr-xr-x 1 root root 30 Jan  4 20:43 /cake/cake
root@aab27beb84ed:/src# cat /cake/cake
#!/bin/sh
exec /cake/Cake "$@"
root@aab27beb84ed:/src# ls -al /cake/Cake
-rwxrw-rw- 1 root root 97416 Jan  4 20:42 /cake/Cake

PS. Add a trailing newline to /cake/cake so cat looks clean.

Remove 2.0 RC

Post 2.0 release exclude following from builds

  • 2.0.0-rc0002
  • 2.0.0-rc0001

docker/build.cake

Lines 127 to 131 in ad9d96d

where version.CatalogEntry.Version switch {
"1.0.0-rc0001" => false,
"1.0.0-rc0002" => false,
"1.0.0-rc0003" => false,
_ => true

msbuild fail

Hi All ,
I'm using "cakebuild/cake:2.1-sdk-mono" image for my build process.

My build is failing with "bash: msbuild: command not found"
I think it cant find the msbuild location.

Update to latest version of Cake

Docker images should be updated to latest version of Cake.

We should also update release documentation for Cake that updating Docker Image is part of the regular release process.

Build script fail to capture exit code

Hi All
I have a following script that is running through bamboo agent

/*****************
echo "-------------------------Start Compilation ----------------------"
docker run --rm -v $PWD:$mountpoint -w $mountpoint docker.xxx.x.x.x/syncromatics/build-box:latest cake --dotnetCore="false" --setClean="true"
--package=${arr[0]} --workDir=${arr[1]}
--releaseName=${arr[2]}
echo "-------------------------End Compilation -------------------------"
echo " "
rc=$?
echo "ERRRRRRRRRRRRRRRRRRRRRRR" $rc
if [ $? -ne 0 ]
then

echo "An error occurred while compile time".
exit 1
fi
******************/
inside the build.cake it fails the build with exit code 1.

/************************
An error occurred when executing task 'Build'.
Error: One or more errors occurred.
MSBuild: Process returned an error (exit code 1).
***********************/

But I cant capture this error using $?. It always return 0.

Add Support for the .netCore 2.2 SDK

I have an app that I'd like to do a multi-stage docker build with cake that will be targeting netcoreapp2.2 that doesn't work as this targets the 2.1 sdk.

The current tag cakebuild/cake:v0.32.1-2.1-sdk doesn't work to build a 2.2 app as that sdk isn't new enough. If we could build a set of containers targeting the microsoft/dotnet:2.2-sdk as the base it would be awesome.

NuGetRestore Fail with error

Hi ,
I'm using "build.cake" to build my .net standard project.
I need to restore nuget packages before build start
Task
/**************************
Task("Restore")
.Does(() =>
{
if (dotnetCore=="true")
{
DotNetCoreRestore(project);
}
if (dotnetCore=="false")
{
NuGetRestore(solutionFile);
}
});

*****************************/

When I'm executing this build get fail with bellow error.

Cannot determine the packages folder to restore NuGet packages. Please specify either -PackagesDirectory or -SolutionDirectory

I'm not sure how to set this value.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.