commit 779d72720e9aad09c07778a9a60924b73160b1d6 Author: Reza Behzadan Date: Fri Apr 26 03:39:59 2024 +0330 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..facc41f --- /dev/null +++ b/.gitignore @@ -0,0 +1,32 @@ +# If you prefer the allow list template instead of the deny list, see community template: +# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore +# +# Binaries for programs and plugins +*.exe +*.exe~ +*.dll +*.so +*.dylib + +# Test binary, built with `go test -c` +*.test + +# Output of the go coverage tool, specifically when used with LiteIDE +*.out + +# Dependency directories (remove the comment below to include it) +# vendor/ + +# Go workspace file +go.work + +# By Reza +build/ +.archive/ +.vagrant/ +.env +*_[0-9] +*_[0-9][0-9] +*_????-??-?? +*.zip + diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..053a60a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,65 @@ +# Stage 1: Build stage +FROM alpine:latest as builder + +# Install build dependencies +RUN apk add --no-cache \ + autoconf \ + build-base \ + openssl-dev \ + zlib-dev \ + nghttp2-dev \ + wget + +# Download and compile curl from source +RUN wget https://curl.se/download/curl-8.7.1.tar.gz && \ + tar -xzf curl-8.7.1.tar.gz && \ + cd curl-8.7.1 && \ + ./configure --with-nghttp2=/usr --with-ssl && \ + make && \ + make install + +# Stage 2: Final image +FROM alpine:latest + +# Label the image +LABEL maintainer="rbehzadan@gmail.com" +LABEL description="Network troubleshooting and debugging tools container" + +# Copy the curl binaries from builder stage +COPY --from=builder /usr/local/bin/curl /usr/local/bin/curl +COPY --from=builder /usr/local/lib /usr/local/lib + +# Install runtime dependencies and other tools +RUN apk add --no-cache \ + iproute2 \ + net-tools \ + bind-tools \ + nmap \ + socat \ + mtr \ + busybox-extras \ + traceroute \ + tcpdump \ + iftop \ + nethogs \ + ncurses \ + jq \ + ca-certificates \ + nghttp2-libs \ + openssl \ + libssh2 \ + zlib && \ + ldconfig /usr/local/lib + +# Set the working directory +WORKDIR /app + +# Copy from https://git.behzadan.ir/p/goecho.git +COPY build/goecho . + +# Expose necessary port +EXPOSE 80 + +# Default command to run when starting the container +CMD ["/app/goecho", "serve", ":80"] +