Update Dockerfile
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -28,7 +28,7 @@ WORKDIR /opt/scripts
|
|
| 28 |
COPY . /opt/scripts
|
| 29 |
RUN chmod +x /opt/scripts/start.sh
|
| 30 |
# 更改目录和文件的所有者
|
| 31 |
-
RUN chown -R appuser:appuser /
|
| 32 |
|
| 33 |
# 安装任何需要的包,使用 --ignore-installed 选项
|
| 34 |
RUN pip install --ignore-installed --break-system-packages -r requirements.txt
|
|
|
|
| 28 |
COPY . /opt/scripts
|
| 29 |
RUN chmod +x /opt/scripts/start.sh
|
| 30 |
# 更改目录和文件的所有者
|
| 31 |
+
RUN chown -R appuser:appuser /opt/scripts
|
| 32 |
|
| 33 |
# 安装任何需要的包,使用 --ignore-installed 选项
|
| 34 |
RUN pip install --ignore-installed --break-system-packages -r requirements.txt
|