403/templates/sing-box-reality-server/Dockerfile
2025-05-17 02:14:05 +08:00

19 lines
558 B
Docker

FROM ghcr.io/sagernet/sing-box:v1.12.0-beta.14
RUN apk add --no-cache curl
RUN curl -1sLf \
'https://dl.cloudsmith.io/public/infisical/infisical-cli/setup.alpine.sh' | bash \
&& apk add infisical
RUN curl -L https://github.com/a8m/envsubst/releases/download/v1.2.0/envsubst-`uname -s`-`uname -m` -o envsubst \
&& chmod +x envsubst \
&& mv envsubst /usr/local/bin
COPY ./sing-box-reality-server.json /etc/sing-box/config.template.json
COPY ./start.sh /usr/local/bin/start.sh
ENTRYPOINT ["/usr/bin/env"]
CMD ["/usr/local/bin/start.sh"]