Miroslav Shubernetskiy
Miroslav Shubernetskiy
## Description Currently chalk reports include the origin URI which should be able to identify a repo on backend. That can have edge cases on repo renames/clones/etc as repo URI...
## Description Currently in `chalk exec` there are lots of things which happen between chalk `main()` and calling `exec`. If there is a bug anywhere in there `chalk` can segfault...
currently chalk relies on `cosign` command for signing things. this is an external dependency which is outside of chalk control. ideally we should either use some library to achieve the...
currently con4m autogenerates a bunch of nim code in `src/c4autoconf.nim` which we use to reference con4m config values across the codebase. we wont be autogenerating same config utils in con4m...
github docker push action now by default enables provenance builds `--provenance` flag in `docker buildx build` command: https://docs.docker.com/build/attestations/slsa-provenance/ How it works is that instead of building a an image manifest...
## Description There are 2 ways to build an image in docker: * ``` docker build ... ``` * ``` container=$(docker run ...) # do stuff in container docker stop...
## Description currently when docker entrypoint is wrapped, it is wrapped exclusively via container config via `Dockerfile`: ```docker FROM alpine ENTRYPOINT ["/foo"] CMD ["bar"] # chalk wraps with: COPY chalk...
currently when s3 sink fails the only error message you get is `403: Permission Denied` without too much information why it was denied. we should add a couple of common...
trying to use the generated schema with express-zod-api results in an error as the generated schema uses `.date()` fields or `.coerse.date()` for input types but neither is compatible with explicit...
### Description Currently dont think there is an easy way to figure out what dockerfile syntax is going to be used if dockerfile does not define `# syntax=...` directive. My...