Skip to content

Commit c7c56e6

Browse files
committed
update configuration and dependencies; remove log directory setup, upgrade packages
1 parent f869a4e commit c7c56e6

File tree

3 files changed

+96
-85
lines changed

3 files changed

+96
-85
lines changed

deploy/docker/Dockerfile

-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ USER appuser
9797
ENV HOME="/home/appuser" \
9898
PATH="/usr/local/bin:/usr/local/aws/v2/bin:${PATH}" \
9999
PYTHONUNBUFFERED=1 \
100-
AWS_MCP_LOG_DIR=/app/logs \
101100
AWS_MCP_TRANSPORT=stdio
102101

103102
# Add metadata

src/aws_mcp_server/config.py

-4
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,3 @@
4949

5050
# Application paths
5151
BASE_DIR = Path(__file__).parent.parent.parent
52-
LOG_DIR = Path(os.environ.get("AWS_MCP_LOG_DIR", str(BASE_DIR / "logs")))
53-
54-
# Ensure log directory exists
55-
LOG_DIR.mkdir(exist_ok=True, parents=True)

0 commit comments

Comments
 (0)