1 Star 0 Fork 0

dongdonglog/本地映射文件进容器的小工具

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Dockerfile 730 Bytes
一键复制 编辑 原始数据 按行查看 历史
dongdonglog 提交于 2023-02-21 10:41 . fix:补充构建文件
# Use a lightweight Python image as the base image
FROM python:3.8-slim-buster
# Set the working directory
WORKDIR /app
# Copy the application files to the working directory
COPY . /app
# Install the application dependencies
RUN pip install paramiko -i https://pypi.douban.com/simple --trusted-host=pypi.douban.com
RUN pip install werkzeug -i https://pypi.douban.com/simple --trusted-host=pypi.douban.com
RUN pip install flask -i https://pypi.douban.com/simple --trusted-host=pypi.douban.com
# Expose port 5000 for the Flask app to listen on
EXPOSE 5000
# Set the environment variable to run Flask in production mode
ENV FLASK_ENV=production
# Set the command to run the application
CMD ["flask", "run", "--host=0.0.0.0"]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/dongdonglog/Map_contianer.git
git@gitee.com:dongdonglog/Map_contianer.git
dongdonglog
Map_contianer
本地映射文件进容器的小工具
master

搜索帮助