traefik/webui/buildx.Dockerfile
kevinpollet e40d8c3d11
Some checks failed
CodeQL / Analyze (push) Has been cancelled
Build and Publish Documentation / Doc Process (push) Has been cancelled
Build experimental image on branch / build-webui (push) Has been cancelled
Build experimental image on branch / Build experimental image on branch (push) Has been cancelled
Merge branch v2.11 into v3.6
2025-12-18 10:43:16 +01:00

18 lines
305 B
Docker

FROM node:24-alpine3.22
ENV WEBUI_DIR=/src/webui
RUN mkdir -p $WEBUI_DIR
COPY package.json yarn.lock .yarnrc.yml $WEBUI_DIR/
ENV VITE_APP_BASE_URL=""
ENV VITE_APP_BASE_API_URL="/api"
WORKDIR $WEBUI_DIR
RUN corepack enable
RUN yarn workspaces focus --all --production
COPY . $WEBUI_DIR/
EXPOSE 8080