Browse Source

Create ubuntu.dockerfile

pull/1247/head
valoomba 2 years ago
committed by GitHub
parent
commit
525779459f
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 10
      ubuntu.dockerfile

10
ubuntu.dockerfile

@ -0,0 +1,10 @@
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
Loading…
Cancel
Save