diff --git a/ui/Dockerfile b/ui/Dockerfile index 3e5de790de6..7469736d6f4 100644 --- a/ui/Dockerfile +++ b/ui/Dockerfile @@ -15,7 +15,9 @@ # specific language governing permissions and limitations # under the License. -FROM node:10-buster AS build +# Build example: docker build -t cloudstack/primate:latest . + +FROM node:lts-buster AS build MAINTAINER "Apache CloudStack" LABEL Description="Apache CloudStack Primate; Modern role-base progressive UI for Apache CloudStack" @@ -33,7 +35,7 @@ RUN npm run build FROM nginx:alpine AS runtime -LABEL org.opencontainers.image.title="CloudStack Primate" \ +LABEL org.opencontainers.image.title="Apache CloudStack Primate" \ org.opencontainers.image.description="A modern role-based progressive CloudStack UI" \ org.opencontainers.image.authors="Apache CloudStack Contributors" \ org.opencontainers.image.url="https://github.com/apache/cloudstack-primate" \