Docker基于pm2制作Python运行环境基础镜像

服务端 NodejsDocker
Zyao89 2020年5月13日星期三 17:04

由于npm依赖中,node-gyp 编译需要依赖 python 环境,因此需要重新构建基础镜像。

#

依赖安装源 sources.list

# 默认注释了源码镜像以提高 apt update 速度,如有需要可自行取消注释
deb http://mirrors.tuna.tsinghua.edu.cn/debian/ stretch main contrib non-free
# deb-src http://mirrors.tuna.tsinghua.edu.cn/debian/ stretch main contrib non-free
deb http://mirrors.tuna.tsinghua.edu.cn/debian/ stretch-updates main contrib non-free
# deb-src http://mirrors.tuna.tsinghua.edu.cn/debian/ stretch-updates main contrib non-free
deb http://mirrors.tuna.tsinghua.edu.cn/debian/ stretch-backports main contrib non-free
# deb-src http://mirrors.tuna.tsinghua.edu.cn/debian/ stretch-backports main contrib non-free
deb http://mirrors.tuna.tsinghua.edu.cn/debian-security stretch/updates main contrib non-free
# deb-src http://mirrors.tuna.tsinghua.edu.cn/debian-security stretch/updates main contrib non-free
1
2
3
4
5
6
7
8
9

# 配置

Dockerfile配置

FROM keymetrics/pm2:10-slim

# sources
COPY ./sources.list /etc/apt/

# node-gyp require python
RUN set -ex \
    && apt-get update \
    && apt-get install -y make gcc g++ python \
    && rm -rf /var/lib/apt/lists/*

# 赋予可执行权限
# RUN mkdir -p /usr/local/lib/node_modules
# RUN chmod -R 777 /usr/local/lib/node_modules

# 集成 vue-cli
# RUN npm install -g @vue/cli --registry=https://registry.npm.taobao.org --unsafe-perm=true --allow-root
# RUN npm install -g @vue/cli-service --registry=https://registry.npm.taobao.org --unsafe-perm=true --allow-root


# Bundle APP files
RUN mkdir -p /home/project
WORKDIR /home/project
COPY . /home/project

CMD [ "pm2-runtime", "pm2.config.js" ]
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
作者: Zyao89; 转载请保留
版权声明: 自由转载-非商用-非衍生-保持署名
上次编辑时间: 2023年11月27日星期一 11:18