13 lines
291 B
Docker
13 lines
291 B
Docker
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"]
|