3x-ui/Dockerfile
s0me1newithhand7s 81ad39abc1 modified: DockerEntrypoint.sh
modified:   DockerInit.sh
	modified:   Dockerfile
	modified:   install.sh
	modified:   x-ui.sh
2024-11-29 19:46:00 +03:00

53 lines
1.3 KiB
Docker

# ========================================================
# Stage: Builder
# ========================================================
FROM golang:1.23-bookworm AS builder
WORKDIR /app
ARG TARGETARCH
RUN apt-get update -y
RUN apt-get install -y \
gcc \
wget \
unzip
COPY . .
ENV CGO_ENABLED=1
ENV CGO_CFLAGS="-D_LARGEFILE64_SOURCE"
RUN go build -o build/x-ui main.go
RUN ./DockerInit.sh "$TARGETARCH"
# ========================================================
# Stage: Final Image of 3x-ui
# ========================================================
FROM ubuntu:rolling
ENV TZ=Asia/Tehran
WORKDIR /app
RUN apt-get update -y
RUN apt-get install -y \
tzdata \
fail2ban \
bash
COPY --from=builder /app/build/ /app/
COPY --from=builder /app/DockerEntrypoint.sh /app/
COPY --from=builder /app/x-ui.sh /usr/bin/x-ui
# Configure fail2ban
RUN rm -f /etc/fail2ban/jail.d/*.conf \
&& cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.local \
&& 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
VOLUME [ "/etc/x-ui" ]
CMD [ "./x-ui" ]
ENTRYPOINT [ "/app/DockerEntrypoint.sh" ]