aboutsummaryrefslogtreecommitdiff
path: root/socat
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2022-12-26 13:06:48 -0500
committerMitchell Riedstra <mitch@riedstra.dev>2022-12-26 13:06:48 -0500
commit639e50050702d094a9464cf263995f7f19079eaf (patch)
treecd6502f6d5af67e5a887474ed3225af37a20cd02 /socat
parent9bd432b5de3592f89d885deaff953418822acaa9 (diff)
downloadrshsh-639e50050702d094a9464cf263995f7f19079eaf.tar.gz
rshsh-639e50050702d094a9464cf263995f7f19079eaf.tar.xz
Add an option for embedded socat in the clientHEADmaster
Diffstat (limited to 'socat')
-rw-r--r--socat/Dockerfile13
-rwxr-xr-xsocat/build.sh5
2 files changed, 18 insertions, 0 deletions
diff --git a/socat/Dockerfile b/socat/Dockerfile
new file mode 100644
index 0000000..1cfd72a
--- /dev/null
+++ b/socat/Dockerfile
@@ -0,0 +1,13 @@
+FROM docker.io/alpine:latest
+ARG SOCAT_VERSION
+
+RUN apk add gcc make alpine-sdk openssl-dev openssl-libs-static
+
+RUN wget http://www.dest-unreach.org/socat/download/socat-$SOCAT_VERSION.tar.gz
+
+RUN tar xfzv socat-$SOCAT_VERSION.tar.gz
+
+WORKDIR /socat-$SOCAT_VERSION
+
+RUN env LDFLAGS=-static ./configure --enable-openssl && make -j$(nproc)
+
diff --git a/socat/build.sh b/socat/build.sh
new file mode 100755
index 0000000..e50e5bf
--- /dev/null
+++ b/socat/build.sh
@@ -0,0 +1,5 @@
+#!/bin/sh
+SOCAT_VERSION=1.7.3.4
+image=socat-builder:latest
+buildah build --build-arg SOCAT_VERSION=$SOCAT_VERSION -t $image .
+podman run --rm -v "$(pwd)":/out/ $image cp -v /socat-$SOCAT_VERSION/socat /out/