Skip to content

Instantly share code, notes, and snippets.

@JelsB
Created January 10, 2021 16:37
Show Gist options
  • Save JelsB/8fc0d4bc54cac6782463a4786dec4911 to your computer and use it in GitHub Desktop.
Save JelsB/8fc0d4bc54cac6782463a4786dec4911 to your computer and use it in GitHub Desktop.
export class PipelineStack extends Stack {
// ...
const synthAction = SimpleSynthAction.standardNpmSynth({
// ...
environment: {
buildImage: LinuxBuildImage.STANDARD_4_0, // needs to be explict to use latest version when using environment field
privileged: true,
environmentVariables: {
DOCKER_HOST: {
value: 'tcp://localhost:2375'
},
DOCKER_TLS_VERIFY: {
value: '0'
}
}
}
})
// ...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment