v2rayA/Dockerfile.gui

10 lines
235 B
Docker
Raw Permalink Normal View History

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
LABEL org.opencontainers.image.source=https://github.com/v2rayA/v2rayA
EXPOSE 80