gpt4 book ai didi

python - 如何将python命令传递给dockerfile

转载 作者:行者123 更新时间:2023-12-04 15:00:12 25 4
gpt4 key购买 nike

我有这个 python 命令,不确定如何在 dockerfile 中传递它。

命令

python3 app/main.py start --config config.yml

我正在编写 dockerfile 但不确定如何在我的 docker 文件中传递上述命令。在我的 main.py 文件中,我以 Action 的形式给出了开始、停止条件。

config.yaml文件

host: 127.0.0.1
port: 9000
db: elastic
elastic:
port: 9200
host: localhost
user: null
secret: null
ssl: false
sqlserver:
port: 1433
host: localhost
instance: MSSQLSERVER
ssl: false
user: null
password: null
kafka:
port: null
host: null
api-docs: true
rocketchat:
host:null
port:null
auth-backend:
- basic
- bearer
- oauth
name: Smartapp

docker 文件

FROM python:3.8
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install -r requirements.txt
COPY . .
EXPOSE 8000
RUN python3 app/main.py start --config config.yml

当我运行 dockerfile 时,它​​会在 RUN 步骤进入无限循环。

Step 7/7 : RUN python3 smartinsights/main.py start --config config.yml
---> Running in 8a81bfe608d6
[91m/usr/src/app/smartinsights/system/DB.py:27: SyntaxWarning: "is" with a literal. Did you mean "=="?
if self.database_name is 'elastic':
/usr/src/app/smartinsights/system/DB.py:29: SyntaxWarning: "is" with a literal. Did you mean "=="?
elif self.database_name is 'sqlserver':
[0mSetting /usr/src/app/smartinsights as project folder
Running...
registering ActionIncident
registering ActionIncidentTag
registering MemoryCount
registering MemoryCloseCount
registering MemoryOpenCount
registering AutoCloseCount
registering AgeingAnalysisData
[2021-04-14 09:57:19 +0000] [9] [INFO] Goin' Fast @ http://127.0.0.1:8000
[2021-04-14 09:57:19 +0000] [9] [INFO] Starting worker [9]

在启动服务器时也可以看到以下错误

[2021-04-14 10:17:37 +0000] [9] [INFO] Goin' Fast @ http://localhost:8000
[2021-04-14 10:17:37 +0000] [9] [ERROR] Unable to start server
Traceback (most recent call last):
File "/usr/local/lib/python3.8/site-packages/sanic/server.py", line 891, in serve
http_server = loop.run_until_complete(server_coroutine)
File "uvloop/loop.pyx", line 1494, in uvloop.loop.Loop.run_until_complete
File "uvloop/loop.pyx", line 1768, in create_server
OSError: [Errno 99] error while attempting to bind on address ('::1', 8000, 0, 0): cannot assign requested address
[2021-04-14 10:17:37 +0000] [9] [INFO] Server Stopped

最佳答案

dockerfile 会“构建”一个图像——您应该/不得在构建过程中运行您的应用程序。您希望您的应用程序仅在容器运行时运行。

将您的 dockerfile 更改为如下所示:

FROM python:3.8
WORKDIR /pyapp/
COPY app/* app/
COPY . .
RUN pip install -r requirements.txt
CMD ["python3", "app/main.py", "start", "--config", "config.yml"]

此 CMD 行告诉 docker,当它运行容器时,它应该在其中运行此命令。你可以这样构建它:

docker build --tag myPythonApp .

然后像这样运行

docker run -it --rm myPythonApp

您在评论中添加了一些输出,表明此容器正在监听端口 9000。您可以像这样在主机上公开此端口:

docker run -it --rm -p 9000:9000 myPythonApp

也许可以在浏览器中访问“http://localhost:9000/”。

该命令将在当前 shell 进程中运行容器。当您点击 ctrl+c 时,进程将停止并且容器将退出。如果你想让容器在后台运行,试试这个:

docker run -it --rm -p 9000:9000 -d myPythonApp

而且,如果您确定一次只会运行一个容器,那么给它起一个名字可能会有所帮助。

docker run -it --rm -p 9000:9000 -d --name MyPythonApp myPythonApp

这将允许您通过以下方式杀死后台容器:

docker rm -f MyPythonApp

顺便说一句,如果你一团糟,并且你正在运行 bash,你可以删除所有正在运行和停止的容器:

docker rm -f $(docker ps -qa)

关于python - 如何将python命令传递给dockerfile,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67089505/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com