-
-
Notifications
You must be signed in to change notification settings - Fork 93
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhance Reality configuration and Dockerfile: - Add dokodemo-door inbound for improved routing. - Update Dockerfile build process with verbose flags - Modify entrypoint script to handle new inbound configuration - Update routing rules to support server name filtering. Without traffic being stolen if use CDN website servername such as cloudflare
- Loading branch information
Showing
3 changed files
with
34 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# builder | ||
FROM golang:alpine AS builder | ||
LABEL maintainer="wulabing <[email protected]>" | ||
LABEL version="0.0.26" | ||
LABEL version="0.0.27" | ||
|
||
|
||
#ENV GOPROXY=https://goproxy.cn,direct | ||
|
@@ -11,8 +11,8 @@ RUN apk add --no-cache git curl jq && \ | |
LATEST_VERSION_TAG=$(curl -s https://api.github.com/repos/XTLS/Xray-core/releases | jq -r '.[0].tag_name') && \ | ||
git clone https://github.com/XTLS/Xray-core.git . && \ | ||
git checkout $LATEST_VERSION_TAG && \ | ||
go mod download && \ | ||
go build -o xray /app/main/ | ||
go mod download -x && \ | ||
go build -v -o xray /app/main/ | ||
|
||
# runner | ||
FROM alpine:latest AS runner | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters