v2rayA/Dockerfile.gui
mzz 1928283842 Merge xray support from CI-He-O/v2rayA (#1004)
* 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>
2023-08-02 23:54:07 +08:00

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