|
|
@ -4,10 +4,16 @@ ADD buscribe-web /assets
|
|
|
|
WORKDIR /assets
|
|
|
|
WORKDIR /assets
|
|
|
|
RUN lessc style.less > style.css
|
|
|
|
RUN lessc style.less > style.css
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
FROM node:23.1-alpine AS thrim
|
|
|
|
|
|
|
|
ADD thrimbletrimmer /assets
|
|
|
|
|
|
|
|
WORKDIR /assets
|
|
|
|
|
|
|
|
RUN npm install
|
|
|
|
|
|
|
|
RUN npm run build
|
|
|
|
|
|
|
|
|
|
|
|
# nginx container contains config that exposes all the various services metrics
|
|
|
|
# nginx container contains config that exposes all the various services metrics
|
|
|
|
FROM nginx:latest
|
|
|
|
FROM nginx:latest
|
|
|
|
ADD nginx/generate-config /
|
|
|
|
ADD nginx/generate-config /
|
|
|
|
COPY --from=less /assets /etc/nginx/html/buscribe
|
|
|
|
COPY --from=less /assets /etc/nginx/html/buscribe
|
|
|
|
COPY thrimbletrimmer /etc/nginx/html/thrimbletrimmer
|
|
|
|
COPY --from=thrim /assets/dist /etc/nginx/html/thrimbletrimmer
|
|
|
|
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
|
|
|
|
LABEL org.opencontainers.image.source https://github.com/dbvideostriketeam/wubloader
|
|
|
|
ENTRYPOINT ["/bin/sh", "-c", "/generate-config && nginx -g \"daemon off;\""]
|
|
|
|
ENTRYPOINT ["/bin/sh", "-c", "/generate-config && nginx -g \"daemon off;\""]
|
|
|
|