Skip to content
#

build-automation

Here are 567 public repositories matching this topic...

earthly
glenonn
glenonn commented Dec 8, 2021

I have an existing Dockerfile that I'd like to use earthly with, but it requires a secret and I don't know how to provide that secret.

Let's say I have the following Dockerfile:

FROM busybox:latest

RUN --mount=type=secret,id=my_secret,target=/mount.txt \
  cp /mount.txt /secret.txt

To build this I'd run
docker build . --secret id=my_secret,env=A_SECRET_IN_MY_ENV

I want t

augustoproiete
augustoproiete commented Nov 21, 2020

Currently when calling the MSBuild alias with an MSBuildSettings, we need to set the target using the WithTarget extension method.

MSBuild("./my-app.sln", new MSBuildSettings
{
    Configuration = "Release",
    ToolVersion = MSBuildToolVersion.VS2019,
}.WithTarget("Build")); // <<<###

It would be nice if we could use a property, with a string, which would make it more na

Improve this page

Add a description, image, and links to the build-automation topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the build-automation topic, visit your repo's landing page and select "manage topics."

Learn more