14 lines
231 B
Docker
14 lines
231 B
Docker
FROM node:19-alpine
|
|
|
|
ARG api_url
|
|
ENV LURE_WEB_API_URL $api_url
|
|
|
|
RUN apk add git
|
|
RUN git clone https://gitea.elara.ws/Elara6331/lure-web
|
|
RUN cd lure-web && \
|
|
npm i && \
|
|
npm run build
|
|
|
|
WORKDIR /lure-web
|
|
ENTRYPOINT node build
|