1 Star 0 Fork 0

mizhexiaoxiao/WebDockerfile

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
mizhexiaoxiao 提交于 2021-02-08 17:25 . add
FROM python:3.6.10-alpine3.11
RUN echo -e "http://mirrors.aliyun.com/alpine/v3.11/main\nhttp://mirrors.aliyun.com/alpine/v3.11/community" > /etc/apk/repositories
RUN apk update && apk add --no-cache nginx mariadb nodejs-npm git build-base supervisor bash
RUN apk add --no-cache --virtual .build-deps openssl-dev gcc musl-dev python3-dev libffi-dev openssh-client make \
&& mkdir /etc/supervisor.d
RUN git clone https://github.com/mizhexiaoxiao/WebsiteGuide.git --depth=1 /WebsiteGuide && cd /WebsiteGuide && git pull
#RUN cd /WebsiteGuide/websitefronted && npm i --registry=https://registry.npm.taobao.org && npm run build
RUN cd /WebsiteGuide/websitefronted && npm install -g cnpm --registry=https://registry.npm.taobao.org && cnpm install && npm run build
RUN pip config set global.index-url https://pypi.mirrors.ustc.edu.cn/simple/ && pip install --upgrade pip && pip install --no-cache-dir -r /WebsiteGuide/requirements.txt \
&& pip install --no-cache-dir gunicorn \
&& apk del .build-deps
ADD websiteguide.ini /etc/supervisor.d/websiteguide.ini
ADD default.conf /etc/nginx/conf.d/default.conf
ADD entrypoint.sh /entrypoint.sh
EXPOSE 80
ENTRYPOINT ["sh", "/entrypoint.sh"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mizhexiaoxiao/WebDockerfile.git
git@gitee.com:mizhexiaoxiao/WebDockerfile.git
mizhexiaoxiao
WebDockerfile
WebDockerfile
main

搜索帮助