mirror of https://github.com/wg-easy/wg-easy
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.
10 lines
225 B
10 lines
225 B
FROM ghcr.io/vikashloomba/capmvm-k8s-os:1.23.5
|
|
RUN apt install nodejs
|
|
# Update npm to latest
|
|
RUN npm install -g npm@latest
|
|
|
|
# Copy Web UI
|
|
COPY src /app
|
|
WORKDIR /app
|
|
RUN npm ci --omit=dev &&\
|
|
mv node_modules /node_modules
|
|
|