File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change 2
2
.venv /
3
3
.gitignore
4
4
.git /
5
- openshift /
5
+ openshift /
6
+ nowflake_CSV /
7
+ ** /* .pvc
8
+ __pycache__ /
Original file line number Diff line number Diff line change @@ -5,9 +5,6 @@ WORKDIR /app
5
5
# Set default MCP transport if not provided
6
6
ENV MCP_TRANSPORT=stdio
7
7
8
- # Set UV cache directory to a writable location
9
- ENV UV_CACHE_DIR=/tmp/uv-cache
10
-
11
8
COPY --from=ghcr.io/astral-sh/uv:latest /uv /uvx /bin/
12
9
13
10
# Copy project files needed for uv sync
@@ -19,9 +16,7 @@ COPY README.md ./
19
16
COPY ./src/ ./src/
20
17
21
18
# Create cache directory with proper permissions and install dependencies
22
- RUN mkdir -p $UV_CACHE_DIR && \
23
- chmod 755 $UV_CACHE_DIR && \
24
- uv sync --locked
19
+ RUN uv sync --no-cache --locked
25
20
26
21
# Environment variables (set these when running the container)
27
22
# SNOWFLAKE_BASE_URL - Snowflake API base URL (optional, defaults to Red Hat's instance)
You can’t perform that action at this time.
0 commit comments