- Convert Gleam encoding module to Elixir implementation - Remove all Gleam dependencies from mix.exs - Remove Gleam configuration files (gleam.toml, src directory) - Update Dockerfile to remove mix_gleam installation - Update EncodingUtils to use Elixir module instead of Gleam - Remove Gleam references from documentation - Clean up all Gleam-related build configuration This simplifies the build process and removes the compilation issues that were preventing successful Docker builds. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
16 lines
No EOL
347 B
Bash
Executable file
16 lines
No EOL
347 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
|
|
echo "Testing Docker build..."
|
|
|
|
# Build the Docker image
|
|
echo "Building Docker image..."
|
|
docker build -t aprsme-test:latest .
|
|
|
|
echo "Docker build completed successfully!"
|
|
|
|
# Test if the image runs
|
|
echo "Testing if the image can run..."
|
|
docker run --rm aprsme-test:latest bin/aprsme eval "IO.puts(:ok)"
|
|
|
|
echo "All tests passed!" |