add Dockerfile

This commit is contained in:
Stille 2022-07-01 16:01:41 +08:00
parent e2560c64a4
commit a64b8ce6fa
1 changed files with 12 additions and 0 deletions

12
Dockerfile Normal file
View File

@ -0,0 +1,12 @@
FROM node:14-alpine AS build
LABEL maintainer="Stille <stille@ioiox.com>"
WORKDIR /app
COPY . /app
RUN npm install
RUN npm run build
FROM nginx:1.16-alpine
COPY --from=build /app/dist /usr/share/nginx/html
EXPOSE 80
CMD [ "nginx", "-g", "daemon off;" ]