Skip to content

Latest commit

 

History

History
28 lines (18 loc) · 461 Bytes

README.md

File metadata and controls

28 lines (18 loc) · 461 Bytes

Intro

This application does nothing, just return. Can be used in containers on different platforms.

Build

Build cmd binary locally

You can build the locally by executing

go build ./...

Build Docker container

You can build the docker container by running:

docker build .

To build for multiple architectures locally:

docker buildx build --platform linux/amd64,linux/arm64 -t <NAMESPACE>/cmd-return . --push