Files
go-toml/Dockerfile
Claude f445202cb8 Fix goreleaser deprecation warnings
- archives.format → archives.formats (now a list)
- archives.builds → archives.ids (renamed for consistency)
- dockers → dockers_v2 (new consolidated docker config)
- Update Dockerfile to use TARGETPLATFORM build arg

https://claude.ai/code/session_01QqkHTjwoFvsNUXtQj3RaU8
2026-03-24 13:40:06 +00:00

7 lines
180 B
Docker

FROM scratch
ENV PATH "$PATH:/bin"
ARG TARGETPLATFORM
COPY $TARGETPLATFORM/tomll /bin/tomll
COPY $TARGETPLATFORM/tomljson /bin/tomljson
COPY $TARGETPLATFORM/jsontoml /bin/jsontoml