Skip to content

Commit 74f4732

Browse files
committed
fixed after errors and read me changes
1 parent e105aeb commit 74f4732

File tree

5 files changed

+16
-3
lines changed

5 files changed

+16
-3
lines changed

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ on:
66

77
env:
88
REGISTRY: docker.io
9-
IMAGE_NAME: dmeppiel/oracle-mcp-server
9+
IMAGE_NAME: shaharyar1255/oracle-mcp-server-updated
1010

1111
jobs:
1212
publish:

Dockerfile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ ADD . /app
3636

3737
# Sync the project into a new environment, using the frozen lockfile
3838
WORKDIR /app
39+
40+
# Create and activate venv for uv
41+
RUN python -m venv /app/.venv
42+
ENV VIRTUAL_ENV=/app/.venv
43+
ENV PATH="$VIRTUAL_ENV/bin:$PATH"
44+
3945
RUN uv sync --frozen
4046

4147
# Set environment for MCP communication

README-zh.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ MCP Oracle DB Context 服务器解决了在处理超大型 Oracle 数据库时
9797
"CACHE_DIR",
9898
"-e",
9999
"THICK_MODE",
100-
"dmeppiel/oracle-mcp-server"
100+
"shaharyar1255/oracle-mcp-server-updated"
101101
],
102102
"env": {
103103
"ORACLE_CONNECTION_STRING":"<db-username>/${input:db-password}@<host>:1521/<service-name>",

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ In VSCode Insiders, go to your user or workspace `settings.json` file and add th
9797
"CACHE_DIR",
9898
"-e",
9999
"THICK_MODE",
100-
"dmeppiel/oracle-mcp-server"
100+
"shaharyar1255/oracle-mcp-server-updated"
101101
],
102102
"env": {
103103
"ORACLE_CONNECTION_STRING":"<db-username>/${input:db-password}@<host>:1521/<service-name>",

pyproject.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,10 @@ line-length = 88
2323
[tool.mypy]
2424
python_version = "3.12"
2525
strict = true
26+
27+
[tool.setuptools.packages.find]
28+
include = ["app", "db_context"]
29+
30+
[build-system]
31+
requires = ["setuptools", "wheel"]
32+
build-backend = "setuptools.build_meta"

0 commit comments

Comments
 (0)