zwq2018 commited on
Commit
5f439be
·
1 Parent(s): 53aba1d

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -1,9 +1,9 @@
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
8
  COPY ./ /code/.
9
 
 
1
  # 使用Hugging Face提供的基础镜像
2
  FROM python:3.9
3
 
 
 
4
 
5
+ WORKDIR /code
6
+ RUN chmod 777 /code
7
  COPY ./requirements.txt /code/requirements.txt
8
  COPY ./ /code/.
9