Initial commit

This commit is contained in:
Reza Behzadan 2024-04-26 03:39:59 +03:30
commit 779d72720e
2 changed files with 97 additions and 0 deletions

32
.gitignore vendored Normal file
View File

@ -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

65
Dockerfile Normal file
View File

@ -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"]