diff options
| author | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-15 11:16:25 +0300 |
|---|---|---|
| committer | Dawid Rycerz <dawid@rycerz.xyz> | 2025-07-15 11:16:25 +0300 |
| commit | b6daa775980253fb9581c891b0c547257339ed88 (patch) | |
| tree | b2f80bc9d3e4e92d6b8943db962b941fb1f77eff /servers/gitlab_python/Dockerfile | |
| parent | 2778e2fd17fc205248a73ba97e6ef23ad26aaed1 (diff) | |
feat: initial gitlab_python mcp
Diffstat (limited to 'servers/gitlab_python/Dockerfile')
| -rw-r--r-- | servers/gitlab_python/Dockerfile | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/servers/gitlab_python/Dockerfile b/servers/gitlab_python/Dockerfile new file mode 100644 index 0000000..0a87b9d --- /dev/null +++ b/servers/gitlab_python/Dockerfile @@ -0,0 +1,16 @@ +FROM python:3.11-slim + +WORKDIR /app + +# Copy only the requirements first to leverage Docker cache +COPY . . + +# Install dependencies +RUN pip install --no-cache-dir uv && \ + uv pip install --system --no-cache-dir -e . + +# Expose the port for remote transport +EXPOSE 8080 + +# Run the server with remote transport by default +CMD ["mcp-gitlab-python", "--transport", "remote"]
\ No newline at end of file |
