1 Star 0 Fork 20

kouzi0521/gala-anteater

forked from openEuler/gala-anteater 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Dockerfile 1.61 KB
一键复制 编辑 原始数据 按行查看 历史
# syntax=docker/dockerfile:1
# ******************************************************************************
# Copyright (c) 2022 Huawei Technologies Co., Ltd.
# gala-anteater is licensed under Mulan PSL v2.
# You can use this software according to the terms and conditions of the Mulan PSL v2.
# You may obtain a copy of Mulan PSL v2 at:
# http://license.coscl.org.cn/MulanPSL2
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
# EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
# MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
# See the Mulan PSL v2 for more details.
# ******************************************************************************/
# Create: 2022-06-01
#
# Dockerfile for building openEuler aops gala-anteater docker image.
#
# Usage:
# docker build -f Dockerfile -t gala-anteater:1.0.0 .
# docker run -v /etc/gala-anteater:/etc/gala-anteater -it gala-anteater:1.0.0
#
# x86 - base image
FROM python:3.7-slim-buster
# ARM -base image
# FROM python:3.7
ENV PYTHONPATH "${PYTHONPATH}:/home/gala-anteather/anteater"
WORKDIR /home/gala-anteather
COPY requirements.txt requirements.txt
COPY . /home/gala-anteather
COPY config/gala-anteater.yaml ./config/
COPY config/module/ ./config/module/
COPY entrypoint.sh /
RUN chmod +x /entrypoint.sh
# Setting the pip3 source
# RUN pip3 config set global.index-url https://mirrors.tools.huawei.com/pypi/simple \
# && pip3 config set install.trusted-host mirrors.tools.huawei.com
RUN pip3 install --no-cache-dir -r requirements.txt
ENTRYPOINT [ "/entrypoint.sh" ]
CMD ["python3", "./anteater/main.py"]
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/kouzi0521/gala-anteater.git
git@gitee.com:kouzi0521/gala-anteater.git
kouzi0521
gala-anteater
gala-anteater
master

搜索帮助

D67c1975 1850385 1daf7b77 1850385