A construct that encapsulates different building methods, e.g. for Node, Rust, Docker.
Project description
CDKTF Local Build Construct
A simple construct that runs builds for different languages locally. Currently, it supports: docker. I plan on adding rust (cargo) and node (npm) support as well.
Usage
import { Provider, DockerBuild, DockerizedBuild } from "cdktf-local-build";
// Local Build extends LocalExec which extends from the null provider,
// so if you already have the provider initialized you can skip this step
new Provider(this, "local-build");
new DockerBuild(this, "docker-backend", {
cwd: "/path/to/project/backend",
dockerfile: "Dockerfile.backend",
image: "cdktf/backend:latest",
push: false, // defaults to true
});
new DockerizedBuild(this, "my-go-backend", {
cwd: "/path/to/project/backend",
command: "go build -o /tmp/backend",
imageHomeDirectory: "/tmp/backend",
platform: "linux/arm64",
image: "go-builder-image:latest",
setUser: true,
});
DockerBuild
Builds a docker image locally.
Options
cwd
: The working directory to run the command in.dockerfile
: The Dockerfile to use.image
: The tag to use for the image.push
: If true,docker push <tag>
is executed after the run.
DockerizedBuild
Build an artifact inside a docker image.
Options
cwd
: The working directory to run the command in.command
: Build command to run int the docker image.image
: The tag to use for the building image.imageHomeDirectory
: The home directory to use inside the image.platform
: The platform to build for (sets docker platform flag).setUser
: If true, the user will be set to the current user inside docker.
CrossBuild
Builds a rust binary using cross (cross runs it inside a docker container).
Please make sure cross is installed on the host machine by running cargo install cross
.
Options
arch
: The architecture to build for (arm
orx86
).projectName
: The name specified in the Cargo.toml.cwd
: The working directory to run the command in.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
cdktf-local-build-0.0.91.tar.gz
(56.1 kB
view details)
Built Distribution
File details
Details for the file cdktf-local-build-0.0.91.tar.gz
.
File metadata
- Download URL: cdktf-local-build-0.0.91.tar.gz
- Upload date:
- Size: 56.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0810f90f432abd93005629b8289faedab3f8ef01dbf8599114924c486ff4722a |
|
MD5 | 493f14e18049badaa678628095251a25 |
|
BLAKE2b-256 | ddbe6f4a069d1f968adabf2b8695b4154cb61f803c4a0cfb1979b00bacd0bea4 |
File details
Details for the file cdktf_local_build-0.0.91-py3-none-any.whl
.
File metadata
- Download URL: cdktf_local_build-0.0.91-py3-none-any.whl
- Upload date:
- Size: 54.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.10.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78d27a78d0b95a0ac1d2cf60e12fdcb8952fff2957a3ac52fed848286153df21 |
|
MD5 | 336d725b17d229530d35445a8dec1e2c |
|
BLAKE2b-256 | 14eb29b27ef8e6144542868a6d09027c98732b6109dc35520d4400f59a29923c |