Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -4
Dockerfile
CHANGED
|
@@ -22,6 +22,9 @@ RUN mkdir -p "${UV_CACHE_DIR}"
|
|
| 22 |
|
| 23 |
# Use app directory
|
| 24 |
WORKDIR /home/user/app
|
|
|
|
|
|
|
|
|
|
| 25 |
COPY --chown=user:user . .
|
| 26 |
|
| 27 |
# Install uv and run sync
|
|
@@ -33,10 +36,6 @@ RUN pip install --no-cache-dir uv
|
|
| 33 |
ENV PYTHONDONTWRITEBYTECODE 1
|
| 34 |
ENV PYTHONUNBUFFERED 1
|
| 35 |
|
| 36 |
-
# 5. Clone the repository
|
| 37 |
-
# Cloning into the current directory (/app)
|
| 38 |
-
RUN git clone https://github.com/keshan/mcp_hackathon.git .
|
| 39 |
-
|
| 40 |
# 6. Install Python dependencies using uv
|
| 41 |
# uv sync will read pyproject.toml and install dependencies.
|
| 42 |
# It will create and use a virtual environment in .venv by default.
|
|
|
|
| 22 |
|
| 23 |
# Use app directory
|
| 24 |
WORKDIR /home/user/app
|
| 25 |
+
# 5. Clone the repository
|
| 26 |
+
# Cloning into the current directory (/app)
|
| 27 |
+
RUN git clone https://github.com/keshan/mcp_hackathon.git .
|
| 28 |
COPY --chown=user:user . .
|
| 29 |
|
| 30 |
# Install uv and run sync
|
|
|
|
| 36 |
ENV PYTHONDONTWRITEBYTECODE 1
|
| 37 |
ENV PYTHONUNBUFFERED 1
|
| 38 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 39 |
# 6. Install Python dependencies using uv
|
| 40 |
# uv sync will read pyproject.toml and install dependencies.
|
| 41 |
# It will create and use a virtual environment in .venv by default.
|