Files
socat-proxy/Dockerfile
2025-09-24 14:03:42 +02:00

10 lines
218 B
Docker

FROM alpine:latest
RUN apk add --no-cache socat netcat-openbsd \
&& rm -rf /var/cache/apk/* /tmp/*
COPY entrypoint.sh VERSION /
RUN mkdir -p /socket \
&& chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]