FROM alpine:3.20

# Placeholder for RoleMesh-Gateway. This image only idles.
# Replace with your actual gateway container.

RUN addgroup -S threegate && adduser -S -G threegate threegate
USER threegate

WORKDIR /srv/threegate

COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]
