ADD file via upload

This commit is contained in:
ashudia4 2024-05-29 00:40:05 +08:00
parent d3ce661208
commit 471f6ba976
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="niezhiwei <3143901237@qq.com>"
WORKDIR /gitlink_help_center
COPY ./ /gitlink_help_center/
RUN yarn install
RUN npm run build -- --locale zh-cn
CMD ["npm", "run", "serve"]