traefik/webui/Dockerfile
Jesper Noordsij 8ebab1b243
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
Update Dockerfiles to Alpine 3.23
2025-12-17 15:26:06 +01:00

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