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.
15 lines
364 B
15 lines
364 B
FROM ghcr.io/vikashloomba/capmvm-k8s-os:1.23.5
|
|
RUN apt-get install -y unzip
|
|
RUN curl -fsSL https://fnm.vercel.app/install | bash
|
|
RUN /bin/bash -c "source ~/.bashrc"
|
|
RUN fnm use --install-if-missing 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
|
|
|