构建Django的Web镜像

构建Django的Web镜像

文章目录

1.前提

  • 已经在环境上安装了Docker

2.步骤

  • 1.拉取最新代码

    bash 复制代码
    git clone https://github.com/lp1506947671/recruitment.git
  • 2.指定manage.py中读取的Django配置文件来源为os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings.local")

    python 复制代码
    #!/usr/bin/env python
    """Django's command-line utility for administrative tasks."""
    import os
    import sys
    
    
    def main():
        """Run administrative tasks."""
        os.environ.setdefault("DJANGO_SETTINGS_MODULE", "settings.local")
        try:
            from django.core.management import execute_from_command_line
        except ImportError as exc:
            raise ImportError(
                "Couldn't import Django. Are you sure it's installed and "
                "available on your PYTHONPATH environment variable? Did you "
                "forget to activate a virtual environment?"
            ) from exc
        execute_from_command_line(sys.argv)
    
    
    if __name__ == "__main__":
        main()
  • 3.从拉取的代码中找到Dockerfile文件

    dockerfile 复制代码
    FROM python:3.10-alpine
    MAINTAINER xiaopawnye
    ENV DJANGO_SETTINGS_MODULE=settings.local
    WORKDIR /data/recruitment
    COPY ./requirements.txt .
    COPY ./start.sh .
    COPY ./src .
    RUN sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories # 替换为apk阿里云镜像
    RUN apk add --update --no-cache curl jq py3-configobj py3-pip py3-setuptools python3-dev \
      && apk add --no-cache gcc g++ jpeg-dev zlib-dev libc-dev libressl-dev musl-dev libffi-dev \
      && python -m pip install --upgrade pip \
      && pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple \
      && apk del gcc g++ libressl-dev musl-dev libffi-dev python3-dev \
      && apk del curl jq py3-configobj py3-pip py3-setuptools \
      && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime \
      && echo 'Asia/Shanghai' >/etc/timezone  \
      && rm -rf /var/cache/apk/*
    RUN sed -i 's/\r//' /data/recruitment/start.sh
    RUN chmod +x ./start.sh
    EXPOSE 39979
    CMD ["/bin/sh", "/data/recruitment/start.sh"]
  • 4.构建镜像,注意下面命令中recruitment/必须是Dockerfile文件的上级父目录

    bash 复制代码
    docker build --network=host -t xiaopawnye/recruitment-base:v1 recruitment/
  • 5.镜像构建完成后启动容器,命令如下

    bash 复制代码
    docker run --rm --network=host  -p 39979:39979 -v "$(pwd)":/data/recruitment  --env server_params="--settings=settings.local" xiaopawnye/recruitment-base:v1

3.问题与思考

  • 问题1:执行镜像构建命令时报错docker build -t xiaopawnye/recruitment-base:v1

    bash 复制代码
    报错ERROR: unable to select packages:
    
      curl (no such package):
    
        required by: world[curl]
    
      jq (no such package):
    
        required by: world[jq]
    
      py3-configobj (no such package):
    
        required by: world[py3-configobj]
    
      py3-pip (no such package):
    
        required by: world[py3-pip]
    
      py3-setuptools (no such package):
    
        required by: world[py3-setuptools]
    
      python3 (no such package):
    
        required by: world[python3]
    
      python3-dev (no such package):
    
        required by: world[python3-dev]

    解决方法:

    查询google,Dockerfile编译django时执行pip命令报错网络不通,通过将命令修改为docker build --network=host -t xiaopawnye/recruitment-base:v1即可

  • 问题2报错

    bash 复制代码
    WARNING: Running pip as the 'root' user can result in broken permissions and conflicting                                                                                        behaviour with the system package manager. It is recommended to use a virtual environment                                                                                        instead: https://pip.pypa.io/warnings/venv
    Looking in indexes: https://pypi.tuna.tsinghua.edu.cn/simple
    Obtaining recruitment from git+ssh://****@git.zhlh6.cn/lp1506947671/recruitment.git@e94b4                                                                                       93b7646b0b74843cea49cfd14fa66c574b4#egg=recruitment (from -r requirements.txt (line 75))
      Cloning ssh://****@git.zhlh6.cn/lp1506947671/recruitment.git (to revision e94b493b7646b                                                                                       0b74843cea49cfd14fa66c574b4) to ./src/recruitment
      ERROR: Error [Errno 2] No such file or directory: 'git' while executing command git ver                                                                                       sion
    ERROR: Cannot find command 'git' - do you have 'git' installed and in your PATH?
    The command '/bin/sh -c apk add --update --no-cache curl jq py3-configobj py3-pip py3-set                                                                                       uptools  python3-dev   && apk add --no-cache gcc g++ jpeg-dev zlib-dev libc-dev libressl-                                                                                       dev musl-dev libffi-dev   && python -m pip install --upgrade pip   && pip install -r requ                                                                                       irements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple  && apk del gcc g++ libressl-dev                                                                                        musl-dev libffi-dev python3-dev   && apk del curl jq py3-configobj py3-pip py3-setuptool                                                                                       s   && ln -sf /usr/share/zoneinfo/Asia/Shanghai /etc/localtime   && echo 'Asia/Shanghai'                                                                                        >/etc/timezone    && rm -rf /var/cache/apk/*' returned a non-zero code: 1

    解决方法: dockerfiles镜像加速配置:https://blog.csdn.net/gitblog_00337/article/details/153157195

  • 问题3:容器启动成功但是web无法访问,显示违反csrf,解决方法注释如下代码

    python 复制代码
    SESSION_COOKIE_SECURE = True
    CSRF_COOKIE_SECURE = True
相关推荐
dont worry about it5 小时前
使用亮数据爬虫API零门槛快速爬取Tiktok数据
开发语言·爬虫·python
梁萌5 小时前
在linux上使用docker搭建ELK日志框架
elk·elasticsearch·docker·kibana·logstash·日志框架
Sailing5 小时前
🚀🚀 从前端到AI Agent开发者,只差这一篇入门指南
前端·后端·ai编程
软件开发技术深度爱好者5 小时前
python使用Pygame库实现避障小人行走游戏
python·游戏·pygame
草帽lufei5 小时前
轻松上手WSL安装与使用
linux·前端·操作系统
jieyu11195 小时前
Python 实战:Web 漏洞 Python POC 代码及原理详解(2)
python·web安全
TimelessHaze5 小时前
🚀 一文吃透 React 性能优化三剑客:useCallback、useMemo 与 React.memo
前端·javascript·react.js
落世繁华5 小时前
Docker快速部署--Mysql一键初始化
运维·mysql·docker·容器·一键部署
说话的鲸鱼5 小时前
‌Python+WhisperX:医疗语音识别的精准与高效实践
python·语音识别·xcode