f445202cb8
- 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
7 lines
180 B
Docker
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
|