docker: fix Dockerfile build

Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
Rohit Yadav 2020-05-06 16:36:51 +05:30
parent e98303a7b0
commit ddcc2435bd
1 changed files with 4 additions and 2 deletions

View File

@ -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" <dev@cloudstack.apache.org>
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" \