1st commit

This commit is contained in:
2025-09-24 11:48:44 +02:00
commit e1ab5f8d8c
8 changed files with 169 additions and 0 deletions

12
Dockerfile Normal file
View File

@@ -0,0 +1,12 @@
FROM alpine:latest
# Install socat and netcat in a single RUN command and clean up cache
RUN apk add --no-cache socat netcat-openbsd \
&& rm -rf /var/cache/apk/* /tmp/*
# Create socket directory and copy/set permissions in single layers
COPY entrypoint.sh /entrypoint.sh
RUN mkdir -p /socket \
&& chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]