Browse Source

fix: dockerfile

许家凯 1 year ago
parent
commit
34f286255f
1 changed files with 2 additions and 2 deletions
  1. 2 2
      Dockerfile

+ 2 - 2
Dockerfile

@@ -13,10 +13,10 @@ RUN pip install  --user -r requirements.txt -i http://mirrors.cloud.aliyuncs.com
 
 FROM python:3.11-slim-bullseye
 COPY --from=builder /root/.local /root/.local
-COPY . /app/data-clean
+COPY . /app/data_clean
 # update PATH environment variable
 ENV PATH=/root/.local/bin:/root/.local:$PATH
 WORKDIR /app
-CMD ["python","-m","JobMain"]
+CMD ["python","-m","data_clean.JobMain"]
 
 # ... yourself commands