dockerc
dockerc copied to clipboard
container image to single executable compiler
using both probably introduces an overhead. Would be good to benchmark to have an idea of how big the overhead really is.
With the latest version (0.3.2), for different images the following error appears now: `panic: couldn't get username` ```bash $ ./dockerc --image docker://oven/bun --output bun $ ./bun thread 40341 panic: couldn't...
https://github.com/NilsIrl/dockerc/blob/f90db2e2fbc9d9a07fa7d8d1114f0737ad2f4296/src/common.zig#L9 there are potentially 3 different settings: silent, warn, error out
CI
We need it.
I have a very complex application with about a dozen interdependent services, currently slapped together with `docker-compose` :-( :-( :-( Would it be possible to bundle these all into a...
Hi everyone, I tried the following in a Dockerfile: ``` FROM ubuntu:20.04 ENV DEBIAN_FRONTEND=noninteractive ENV ARCH=x86_64 ## Compiling Dockerc works but error on execution: InvalidExe # Install dockerc from Git...