3x-ui/Dockerfile

56 lines
1.3 KiB
Text
Raw Normal View History

# ========================================================
# Stage: Builder
# ========================================================
2025-08-17 10:27:21 +00:00
FROM golang:1.25-alpine AS builder
2023-05-07 16:59:37 +00:00
WORKDIR /app
2025-11-23 14:30:52 +00:00
RUN apk add --no-cache \
build-base \
gcc
# docker CACHE
COPY go.mod go.sum ./
RUN go mod download
2023-05-07 16:59:37 +00:00
COPY . .
2023-05-08 02:22:48 +00:00
2024-01-27 09:26:10 +00:00
ENV CGO_ENABLED=1
ENV CGO_CFLAGS="-D_LARGEFILE64_SOURCE"
RUN go build -ldflags "-w -s" -o build/x-ui main.go
# ========================================================
# Stage: Final Image of 3x-ui
# ========================================================
FROM alpine
2023-05-07 16:59:37 +00:00
WORKDIR /app
2023-05-08 02:22:48 +00:00
2025-11-23 14:30:52 +00:00
RUN apk add --no-cache \
ca-certificates \
tzdata \
2024-01-27 09:26:10 +00:00
fail2ban \
bash
2023-05-07 16:59:37 +00:00
COPY DockerEntrypoint.sh /app/
2024-01-27 09:26:10 +00:00
COPY --from=builder /app/build/ /app/
COPY --from=builder /app/x-ui.sh /usr/bin/x-ui
# Configure fail2ban
RUN rm -f /etc/fail2ban/jail.d/alpine-ssh.conf \
&& cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.local \
2023-07-20 18:24:51 +00:00
&& sed -i "s/^\[ssh\]$/&\nenabled = false/" /etc/fail2ban/jail.local \
&& sed -i "s/^\[sshd\]$/&\nenabled = false/" /etc/fail2ban/jail.local \
&& sed -i "s/#allowipv6 = auto/allowipv6 = auto/g" /etc/fail2ban/fail2ban.conf
RUN chmod +x \
/app/DockerEntrypoint.sh \
/app/x-ui \
/usr/bin/x-ui
ENV XUI_ENABLE_FAIL2BAN="true"
2025-09-21 17:03:36 +00:00
EXPOSE 2053
VOLUME [ "/etc/x-ui" ]
2025-11-23 14:30:52 +00:00
ENTRYPOINT [ "/app/DockerEntrypoint.sh" ]