2024-05-08 18:07:39 +08:00
|
|
|
FROM node:alpine as builder
|
2024-04-09 16:21:05 +05:30
|
|
|
|
|
|
|
|
ARG NEXT_PUBLIC_WS_URL
|
|
|
|
|
ARG NEXT_PUBLIC_API_URL
|
|
|
|
|
ENV NEXT_PUBLIC_WS_URL=${NEXT_PUBLIC_WS_URL}
|
|
|
|
|
ENV NEXT_PUBLIC_API_URL=${NEXT_PUBLIC_API_URL}
|
|
|
|
|
|
|
|
|
|
WORKDIR /home/perplexica
|
|
|
|
|
|
|
|
|
|
COPY ui /home/perplexica/
|
|
|
|
|
|
|
|
|
|
RUN yarn install
|
|
|
|
|
RUN yarn build
|
|
|
|
|
|
2024-05-08 18:07:39 +08:00
|
|
|
FROM nginx:stable-alpine-slim
|
|
|
|
|
|
|
|
|
|
COPY --from=builder /home/perplexica/out /usr/share/nginx/html
|