2 Star 7 Fork 4

Charles Lai/devops-backend-lite

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 647 Bytes
一键复制 编辑 原始数据 按行查看 历史
Charles Lai 提交于 2023-12-18 19:20 . feat: 增加docker镜像打包
FROM python:3.9.14-slim-buster
LABEL maintainer="Charles Lai"
ARG APP
RUN mkdir -p /app/${APP} /data/nfs/web; apt update && apt -y install nginx libmariadb-dev-compat libmariadb-dev python3-dev python-dev libldap2-dev libsasl2-dev libssl-dev build-essential libffi-dev && apt -y autoclean
COPY requirements.txt /data/requirements.txt
COPY devops.conf /etc/nginx/sites-enabled/default
RUN pip install -r /data/requirements.txt -i https://mirrors.aliyun.com/pypi/simple --trusted-host mirrors.aliyun.com
COPY . /app/${APP}
ADD dist.tar.gz /app/${APP}/
WORKDIR /app/${APP}
RUN chmod +x *.sh
ENTRYPOINT ["supervisord", "-n", "-c", "daemon.conf"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/qitan/devops-backend-lite.git
git@gitee.com:qitan/devops-backend-lite.git
qitan
devops-backend-lite
devops-backend-lite
main

搜索帮助