Spaces:
Sleeping
Sleeping
Commit ·
bd034fa
1
Parent(s): 262ab2e
fix: copy README.md into Docker image for hatchling metadata
Browse filesCo-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
- Dockerfile +2 -2
Dockerfile
CHANGED
|
@@ -7,10 +7,10 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
| 7 |
&& rm -rf /var/lib/apt/lists/* \
|
| 8 |
&& npm install -g @getgrit/cli
|
| 9 |
|
| 10 |
-
COPY pyproject.toml .
|
| 11 |
COPY src/ src/
|
| 12 |
|
| 13 |
-
RUN pip install --no-cache-dir
|
| 14 |
|
| 15 |
ENV GRADIO_SERVER_NAME="0.0.0.0"
|
| 16 |
ENV GRADIO_SERVER_PORT="7860"
|
|
|
|
| 7 |
&& rm -rf /var/lib/apt/lists/* \
|
| 8 |
&& npm install -g @getgrit/cli
|
| 9 |
|
| 10 |
+
COPY pyproject.toml README.md ./
|
| 11 |
COPY src/ src/
|
| 12 |
|
| 13 |
+
RUN pip install --no-cache-dir .
|
| 14 |
|
| 15 |
ENV GRADIO_SERVER_NAME="0.0.0.0"
|
| 16 |
ENV GRADIO_SERVER_PORT="7860"
|