You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

14 lines
355 B

FROM ghcr.io/vikashloomba/capmvm-k8s-os:1.23.5
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash && \
export NVM_DIR="$HOME/.nvm" && \
nvm install 20
# Update npm to latest
RUN npm install -g npm@latest
# Copy Web UI
COPY src /app
WORKDIR /app
RUN npm ci --omit=dev
# Set Environment
ENV DEBUG=Server,WireGuard