1 Star 0 Fork 0

DingJunyao/myenigma

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
Dockerfile 514 Bytes
一键复制 编辑 原始数据 按行查看 历史
DingJunyao 提交于 2021-12-19 03:17 . try dockerfile
# Use an official Python runtime as a parent image
FROM python:3.10
# Set the working directory to /app
WORKDIR /app
# Copy the current directory contents into the container at /app
COPY . /app
# Install any needed packages specified in requirements.txt
RUN pip install -r requirements.txt
# Make port 80 available to the world outside this container
EXPOSE 8080
# Define environment variable
ENV PYTHONPATH "${PYTHONPATH}:/app"
# Run app.py when the container launches
CMD ["python", "web_demo/web_demo.py"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/DingJunyao/myenigma.git
[email protected]:DingJunyao/myenigma.git
DingJunyao
myenigma
myenigma
main

搜索帮助