Files
trihuy-russian/Dockerfile
T

71 lines
1.8 KiB
Docker
Raw Normal View History

2026-05-09 17:38:48 +02:00
# ========================================================
# Stage: Frontend (Vite)
# ========================================================
FROM node:22-alpine AS frontend
WORKDIR /src/frontend
COPY frontend/package.json frontend/package-lock.json ./
RUN npm ci
COPY frontend/ ./
COPY web/translation /src/web/translation
2026-05-09 17:38:48 +02:00
RUN npm run build
2023-07-01 15:56:43 +03:30
# ========================================================
# Stage: Builder
# ========================================================
2026-02-16 01:10:43 +01:00
FROM golang:1.26-alpine AS builder
2023-05-07 20:29:37 +03:30
WORKDIR /app
2023-07-01 15:56:43 +03:30
ARG TARGETARCH
RUN apk --no-cache --update add \
build-base \
gcc \
curl \
2023-07-01 15:56:43 +03:30
unzip
2023-05-07 20:29:37 +03:30
COPY . .
2026-05-09 17:38:48 +02:00
COPY --from=frontend /src/web/dist ./web/dist
2023-05-08 05:52:48 +03:30
2024-01-27 12:56:10 +03:30
ENV CGO_ENABLED=1
ENV CGO_CFLAGS="-D_LARGEFILE64_SOURCE"
2025-01-27 01:13:12 +01:00
RUN go build -ldflags "-w -s" -o build/x-ui main.go
2023-07-01 15:56:43 +03:30
RUN ./DockerInit.sh "$TARGETARCH"
2023-05-08 05:52:48 +03:30
2023-07-01 15:56:43 +03:30
# ========================================================
# Stage: Final Image of 3x-ui
# ========================================================
FROM alpine
ENV TZ=Asia/Tehran
2023-05-07 20:29:37 +03:30
WORKDIR /app
2023-05-08 05:52:48 +03:30
2023-07-01 15:56:43 +03:30
RUN apk add --no-cache --update \
ca-certificates \
tzdata \
2024-01-27 12:56:10 +03:30
fail2ban \
2026-01-11 22:18:54 +03:00
bash \
2026-02-08 01:00:03 +03:30
curl \
openssl
2023-05-07 20:29:37 +03:30
2024-01-27 12:56:10 +03:30
COPY --from=builder /app/build/ /app/
COPY --from=builder /app/DockerEntrypoint.sh /app/
COPY --from=builder /app/x-ui.sh /usr/bin/x-ui
COPY --from=builder /app/web/translation /app/web/translation
2023-07-01 15:56:43 +03:30
# Configure fail2ban
RUN rm -f /etc/fail2ban/jail.d/alpine-ssh.conf \
&& cp /etc/fail2ban/jail.conf /etc/fail2ban/jail.local \
2023-07-20 21:54:51 +03:30
&& 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
2023-07-01 15:56:43 +03:30
RUN chmod +x \
/app/DockerEntrypoint.sh \
/app/x-ui \
/usr/bin/x-ui
ENV XUI_ENABLE_FAIL2BAN="true"
2025-09-21 20:03:36 +03:00
EXPOSE 2053
VOLUME [ "/etc/x-ui" ]
2024-01-27 12:56:10 +03:30
CMD [ "./x-ui" ]
2023-07-01 15:56:43 +03:30
ENTRYPOINT [ "/app/DockerEntrypoint.sh" ]