This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
# 使用官方Node.js镜像作为基础镜像
FROM node:18-alpine
LABELmaintainer="hejiayu <hejy47@nudt.edu.cn>"
# 设置工作目录
WORKDIR /gitlink_help_center
# 设置npm和yarn使用淘宝镜像源,加快依赖安装速度
RUN npm config set registry https://registry.npmmirror.com &&\
yarn config set registry https://registry.npmmirror.com