korbin

Results 15 comments of korbin

If compiled with ```CGO_ENABLED=0```, the resulting binary is completely statically-linked with no dependency on a dynamically-linked libc. I pushed a build at `korbin/dockerize:latest` on Dockerhub with this env var added....

I was able to get the `efs-csi-controller` running by removing the liveness check and switching to `hostNetwork: true` until the IMDS dependency can be resolved.

I was able to compile a multi-arch image with minimal Dockerfile modification: https://github.com/angellist/metabase/commit/a4c2d71d967c996f1c35472fb90c60979854ea10

> Has there been any updates on this? With the launch of even more M1 ARM-based Macs it's quickly becoming the soon-to-be-default architecture, and if you're running a VM there's...

+1 on this; thinking about implementing a before_process_filter and after_process_filter

I'm seeing this issue with raw `buildctl` and `buildkitd` in `0.23.1` (both rootless and non-rootless mode) using multiple DockerHub image imports/exports such as: - ```--export-cache type=registry,ref=org/repo:tag,mode=max,compression=zstd,force-compression=true,compression-level=3,oci-mediatypes=true,ignore-error=true``` I don't have specific...

Rolling back to 0.22.x seems to have fixed this problem for us.

FYI: This is still an issue, and a pretty severe one it seems. A large pnpm store sent our Buildkit daemon out of memory instantly.

This works, FYI: ```Ruby def paste data = String.new STDIN.raw(intr: true) do |stdin| print "\033]52;p;?\007" loop do char = stdin.getc break if data.length > 0 && (char == "\a" ||...