mirror of
https://github.com/v2rayA/v2rayA.git
synced 2024-11-25 16:34:19 +08:00
1928283842
* added xtls-rprx-vision & uTLS fingerprint * removed node option openssl-legacy-provider * removed node option openssl-legacy-provider * update github action * fix: vless id --------- Co-authored-by: clheo <93776896+Cl-He-O@users.noreply.github.com>
9 lines
164 B
Docker
9 lines
164 B
Docker
FROM node:lts-alpine AS builder
|
|
ADD gui /gui
|
|
WORKDIR /gui
|
|
RUN yarn && yarn build
|
|
|
|
FROM nginx:stable-alpine
|
|
COPY --from=builder /web /usr/share/nginx/html
|
|
EXPOSE 80
|