Update Dockerfile
Browse files- Dockerfile +1 -4
Dockerfile
CHANGED
@@ -8,11 +8,8 @@ WORKDIR /app
|
|
8 |
COPY . /app
|
9 |
|
10 |
# 安装依赖
|
11 |
-
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
RUN pip install --no-cache-dir gunicorn
|
13 |
-
|
14 |
-
# 提升权限
|
15 |
-
RUN chmod -R 755 .
|
16 |
|
17 |
# 暴露端口
|
18 |
EXPOSE 5000
|
|
|
8 |
COPY . /app
|
9 |
|
10 |
# 安装依赖
|
|
|
11 |
RUN pip install --no-cache-dir gunicorn
|
12 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
|
13 |
|
14 |
# 暴露端口
|
15 |
EXPOSE 5000
|