You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
FROM node:18-alpine
|
|
LABEL maintainer="yuankaifneg <2894340009@qq.com>"
|
|
|
|
WORKDIR /gitlink_help_center
|
|
|
|
COPY ./ /gitlink_help_center/
|
|
|
|
RUN yarn install
|
|
RUN npm run build -- --locale zh-cn
|
|
CMD ["npm", "run", "serve"]
|