mirror of
https://github.com/traefik/traefik.git
synced 2026-02-03 20:39:51 -05:00
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
17 lines
299 B
Docker
17 lines
299 B
Docker
FROM node:24-alpine3.23
|
|
# Current Active LTS release according to (https://nodejs.org/en/about/releases/)
|
|
|
|
ENV WEBUI_DIR=/src/webui
|
|
RUN mkdir -p $WEBUI_DIR
|
|
|
|
COPY package.json $WEBUI_DIR/
|
|
COPY yarn.lock $WEBUI_DIR/
|
|
|
|
WORKDIR $WEBUI_DIR
|
|
RUN yarn install
|
|
|
|
COPY . $WEBUI_DIR/
|
|
|
|
EXPOSE 8080
|
|
|
|
RUN yarn lint
|