You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
441 B
Docker
22 lines
441 B
Docker
1 year ago
|
FROM node:16-alpine as build-stage
|
||
|
|
||
|
WORKDIR /admim
|
||
|
|
||
|
COPY .npmrc package.json yarn.lock ./
|
||
|
RUN --mount=type=cache,id=yarn-store,target=/root/.yarn-store \
|
||
|
yarn install --frozen-lockfile
|
||
|
|
||
|
COPY . .
|
||
|
ARG NODE_ENV=""
|
||
|
RUN env ${NODE_ENV} yarn build:prod
|
||
|
|
||
|
## -- stage: dist => nginx --
|
||
|
FROM nginx:alpine
|
||
|
|
||
|
ENV TZ=Asia/Shanghai
|
||
|
|
||
|
COPY ./nginx.conf /etc/nginx/conf.d/default.conf
|
||
|
COPY --from=build-stage /admim/dist /usr/share/nginx/html
|
||
|
|
||
|
EXPOSE 80
|