feat: restructure ht-docker-tools repository with enhanced Deno support and NVM integration
- 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.
This commit is contained in:
17
Dockerfile_minio
Normal file
17
Dockerfile_minio
Normal file
@@ -0,0 +1,17 @@
|
||||
FROM minio/minio:latest
|
||||
LABEL author="Task Venture Capital GmbH <hello@task.vc>"
|
||||
|
||||
USER root
|
||||
|
||||
# MinIO uses a minimal base, install required packages
|
||||
RUN microdnf install -y curl unzip ca-certificates \
|
||||
&& curl -fsSL https://deno.land/install.sh | sh \
|
||||
&& microdnf clean all
|
||||
|
||||
ENV DENO_INSTALL="/root/.deno"
|
||||
ENV PATH="$DENO_INSTALL/bin:$PATH"
|
||||
|
||||
# Verify Deno installation
|
||||
RUN deno --version
|
||||
|
||||
USER minio
|
||||
Reference in New Issue
Block a user