Rajesh Betkiker commited on
Commit
758455b
·
1 Parent(s): dda60f8

Added file to be copied to Dockerfile

Browse files
Files changed (2) hide show
  1. Dockerfile +6 -5
  2. README.md +1 -1
Dockerfile CHANGED
@@ -15,11 +15,12 @@ RUN chown -R appuser:1000 /app
15
  RUN pip install --upgrade pip && pip install uv
16
 
17
  # Copy project files
18
- COPY --chown=appuser:1000 pyproject.toml .
19
- COPY --chown=appuser:1000 app.py .
20
- COPY --chown=appuser:1000 Dockerfile .
21
- COPY --chown=appuser:1000 README.md .
22
- COPY --chown=appuser:1000 uv.lock .
 
23
 
24
  # Install dependencies
25
  RUN uv sync
 
15
  RUN pip install --upgrade pip && pip install uv
16
 
17
  # Copy project files
18
+ COPY --chown=appuser:1000 pyproject.toml /app
19
+ COPY --chown=appuser:1000 app.py /app
20
+ COPY --chown=appuser:1000 mcp_server.py /app
21
+ COPY --chown=appuser:1000 Dockerfile /app
22
+ COPY --chown=appuser:1000 README.md /app
23
+ COPY --chown=appuser:1000 uv.lock /app
24
 
25
  # Install dependencies
26
  RUN uv sync
README.md CHANGED
@@ -10,7 +10,7 @@ app_port: 7860
10
  pinned: true
11
  base_path: /gradio
12
  license: apache-2.0
13
- short_description: Bot that tags HuggingFace models when they are mentioned
14
  tags:
15
  - mcp-course
16
  - huggingface
 
10
  pinned: true
11
  base_path: /gradio
12
  license: apache-2.0
13
+ short_description: A Bot that tags HuggingFace models when they are mentioned
14
  tags:
15
  - mcp-course
16
  - huggingface