Update Dockerfile
Browse files- Dockerfile +3 -0
Dockerfile
CHANGED
@@ -11,6 +11,9 @@ COPY . /app
|
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
RUN pip install --no-cache-dir gunicorn
|
13 |
|
|
|
|
|
|
|
14 |
# 暴露端口
|
15 |
EXPOSE 5000
|
16 |
|
|
|
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
|
19 |
|