banao-tech commited on
Commit
3783632
·
verified ·
1 Parent(s): fb4f0bd

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +2 -2
Dockerfile CHANGED
@@ -18,8 +18,8 @@ COPY requirements.txt /app/requirements.txt
18
  RUN pip install --no-cache-dir -r /app/requirements.txt
19
 
20
  # Copy the application code
21
- COPY main.py /app/main.py
22
- COPY utils.py /app/utils.py
23
  # Run Python script to check for errors before starting FastAPI
24
  RUN python main.py
25
 
 
18
  RUN pip install --no-cache-dir -r /app/requirements.txt
19
 
20
  # Copy the application code
21
+ COPY main.py main.py
22
+ COPY utils.py utils.py
23
  # Run Python script to check for errors before starting FastAPI
24
  RUN python main.py
25