FROM alpine:3.16 RUN addgroup -g 1000 -S socat && \ adduser -u 1000 -S socat -G socat && \ apk add --no-cache socat bash COPY entrypoint.sh / USER socat ENTRYPOINT ["/entrypoint.sh"]