- Removed Dockerfile and added multiple Dockerfiles for various tools (ClickHouse, MongoDB, MinIO, Caddy, Redis) with Deno runtime. - Updated package.json to reflect new repository structure and versioning. - Added comprehensive README and technical notes for architecture overview and usage. - Implemented build and test scripts for streamlined image creation and validation. - Introduced bash scripts for NVM functionality in Docker images.
10 lines
209 B
Bash
10 lines
209 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Load nvm before executing Dockerfile RUN commands
|
|
export NVM_DIR="/usr/local/nvm"
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
|
|
|
|
# Execute the command passed to this wrapper
|
|
eval "$@"
|