aigenai commited on
Commit
301b134
·
verified ·
1 Parent(s): 13d2229

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -1
Dockerfile CHANGED
@@ -58,7 +58,7 @@ RUN apt-get update && apt-get install -y curl unzip gnupg build-essential sudo v
58
  # 创建虚拟环境并安装 Python 包
59
  python3 -m venv $VIRTUAL_ENV && \
60
  $VIRTUAL_ENV/bin/pip install --upgrade pip && \
61
- $VIRTUAL_ENV/bin/pip install ${requirements:-requests}
62
 
63
  # 更改现有的 postgres 用户 UID 和 GID 为 1000
64
  usermod -u 1000 postgres && groupmod -g 1000 postgres && \
 
58
  # 创建虚拟环境并安装 Python 包
59
  python3 -m venv $VIRTUAL_ENV && \
60
  $VIRTUAL_ENV/bin/pip install --upgrade pip && \
61
+ $VIRTUAL_ENV/bin/pip install ${requirements:-requests} && \
62
 
63
  # 更改现有的 postgres 用户 UID 和 GID 为 1000
64
  usermod -u 1000 postgres && groupmod -g 1000 postgres && \