Update Dockerfile
Browse files- Dockerfile +1 -0
Dockerfile
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
# 使用Hugging Face提供的基础镜像
|
2 |
FROM python:3.9
|
3 |
|
|
|
4 |
WORKDIR /code
|
5 |
|
6 |
COPY ./requirements.txt /code/requirements.txt
|
|
|
1 |
# 使用Hugging Face提供的基础镜像
|
2 |
FROM python:3.9
|
3 |
|
4 |
+
RUN chmod 777 /code
|
5 |
WORKDIR /code
|
6 |
|
7 |
COPY ./requirements.txt /code/requirements.txt
|