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.
 
 
riskshell/Dockerfile

33 lines
1.2 KiB

FROM node:current-alpine3.12
#拷贝公钥免密克隆仓库代码
COPY .ssh /root/.ssh
#拷贝到容器里的密钥需要修改权限才能正常使用
RUN chmod 400 /root/.ssh/id_rsa
RUN mkdir /app
#拷贝自动更新部署应用的命令
COPY shell/* /app/
#为命令建立软链接
RUN ln -s /app/* /usr/local/bin/ && chmod +x /app/*
#启用 openresty 仓库
COPY admin@openresty.com-5ea678a6.rsa.pub /etc/apk/keys/admin@openresty.com-5ea678a6.rsa.pub
RUN MAJOR_VER=`echo $VERSION_ID | sed 's/\.[0-9]\+$//'` && echo "http://openresty.org/package/alpine/v$MAJOR_VER/main" \
| sudo tee -a /etc/apk/repositories
#使用阿里云镜像源安装git openssh curl openresty
RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories && apk update && apk add git openssh curl openresty
WORKDIR /usr/local/openresty/nginx
#备份openresty默认配置,拷贝自定义配置
RUN move conf/nginx.conf conf/nginx.conf.bak
COPY conf/nginx.conf conf/nginx.conf
#拷贝应用代码
WORKDIR /app
#git web钩子服务端
RUN git clone git@gogs.kirito.cool:panqihua/RiskCloudRun.git
WORKDIR /app/RiskCloudRun
#安装依赖
RUN yarn
WORKDIR /app
#运行web服务端
ENTRYPOINT ["initRisk"]