Skip to content

Release v0.0.5

Latest

Choose a tag to compare

@github-actions github-actions released this 22 Aug 06:20
· 1 commit to main since this release

🎉 CodeRun CLI v0.0.5

🚀 Features/Fixes

  • UI improvements in the deploy command
  • Added build flag that allows deploying containers without requiring a pre-built image. Simply specifying the application path and a Dockerfile inside would work. Example:
# command~ coderun deploy --build /tmp/test-build --name test-v0.0.5 --http-port 80

# path app~ ls -l /tmp/test-build
total 16
-rw-r--r--@ 1 barckcode  wheel    48 20 ago 17:27 Dockerfile
-rw-r--r--@ 1 barckcode  wheel  1117 19 ago 19:15 index.html

# Dockerfile contents~ cat /tmp/test-build/Dockerfile
FROM nginx:alpine
COPY . /usr/share/nginx/html/

📦 Installation

Linux (AMD64)

curl -L https://github.com/helmcode/coderun-cli/releases/download/v0.0.5/coderun-linux-amd64 -o coderun
chmod +x coderun
sudo mv coderun /usr/local/bin/

Linux (ARM64)

curl -L https://github.com/helmcode/coderun-cli/releases/download/v0.0.5/coderun-linux-arm64 -o coderun
chmod +x coderun
sudo mv coderun /usr/local/bin/

macOS (Intel)

curl -L https://github.com/helmcode/coderun-cli/releases/download/v0.0.5/coderun-darwin-amd64 -o coderun
chmod +x coderun
sudo mv coderun /usr/local/bin/

macOS (Apple Silicon)

curl -L https://github.com/helmcode/coderun-cli/releases/download/v0.0.5/coderun-darwin-arm64 -o coderun
chmod +x coderun
sudo mv coderun /usr/local/bin/

Windows (AMD64)

Download coderun-windows-amd64.exe and rename it to coderun.exe

Windows (ARM64)

Download coderun-windows-arm64.exe and rename it to coderun.exe

✅ Installation Verification

coderun --version

🔒 Integrity Verification

You can verify file integrity using checksums.txt