Creates docker containers using a base image and the provided files together with a config (environment variables and the run command CMD).Useful inside of Kubernetes or Docker-containers, as you don't need to access the docker demon.It then automatically uploads the image to GCR.
$> artificer \ --baseimage="eu.gcr.io/some-registry/alpine:latest" \ --target="eu.gcr.io/some-registry/myprogram:latest" \ -f"~/go/bin/myprogram" \ -f"/some/other/file/or/directory" \ -e"SOMEPATH=/usr/bin/SomePath" \ -e"SOMEMOREENV=otherEnv" \ -c"/myprogram --params"