I had a chuckle when I looked at the source code and could not find a Dockerfile in there. I want to kick the tires on it and the easiest way would be to run it as a Docker container against an existing file and alas, I cannot.
> the easiest way would be to run it as a Docker container
Regarding this part, you can always just run a base image and add the app yourself. I'm on mobile so can't test, but should be along these lines:
docker run --rm --name dockerfmt \
-v /path/to/Dockerfile:/tmp/Dockerfile \
golang:1.24-alpine sh -c \
"apk add git && go run github.com/reteps/dockerfmt@latest /tmp/Dockerfile"
> against an existing fileFor this part yes, you'd still need one, but it can be any of your own.
Hi there — I’ll try to distribute a docker release of the binary tomorrow!
I suggest you build it with https://github.com/ko-build/ko
so you can still have no dockerfile and the irony is not ruined
I think they were asking for a sample Dockerfile in the repo to test it on.
Then they can use one of the 14 in the `tests` directory :) https://github.com/reteps/dockerfmt/tree/main/tests
I usually share the sentiment, but, come on, it's packaged as a single binary file...