Compare commits

...

3 Commits

Author SHA1 Message Date
DealingNoMore 30d8ca2802 Update Dockerfile 2024-05-28 15:01:31 +08:00
DealingNoMore 790974a7b9 Update Dockerfile 2024-05-28 14:58:02 +08:00
DealingNoMore 399fadb8b7 Add Dockerfile 2024-05-28 14:55:38 +08:00
1 changed files with 9 additions and 0 deletions

9
Dockerfile Normal file
View File

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