From 760100465f46e826681d18224589a79d6ac37365 Mon Sep 17 00:00:00 2001 From: gimse <23360355+gimse@users.noreply.github.com> Date: Thu, 9 Nov 2023 20:08:04 +0100 Subject: [PATCH] moving MAINTAINER tanwenyang@aliyun.com --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 35e0b23..c44718f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,6 @@ # Use node:alpine3.17 image as the base image FROM docker.io/node:alpine3.17 as builder -# Maintainer information -MAINTAINER tanwenyang@aliyun.com - # Copy the vue-color-avatar file from the local directory to the /app directory inside the container COPY . /app @@ -22,5 +19,8 @@ FROM docker.io/nginxinc/nginx-unprivileged:1.25.1-alpine # Showing that port 8080 can be published EXPOSE 8080 +# Maintainer information +MAINTAINER tanwenyang@aliyun.com + # Copy html from previous stage COPY --from=builder /app/dist /usr/share/nginx/html