ADD file via upload

This commit is contained in:
pzthu8lr3 2024-05-27 14:30:12 +08:00
parent cd47e47fd7
commit f0ae1156c6
1 changed files with 10 additions and 0 deletions

10
Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM node:18-alpine
LABEL maintainer="yuankaifneg <2894340009@qq.com>"
WORKDIR /gitlink_help_center
COPY ./gitlink_help_center/ /gitlink_help_center/
RUN yarn install
RUN npm run build -- --locale zh-cn
CMD ["npm", "run", "serve"]