Skip to content

Commit a3a71f4

Browse files
Merge pull request AndyEverything#14 from Srikanth-Macha/main
Add Dockerfile for containerized application setup
2 parents d9e9933 + 6e53d96 commit a3a71f4

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

.dockerignore

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
.git/
2+
__pycache__/
3+
*.pyc
4+
.env
5+
.vscode/
6+
.DS_Store
7+
.dockerignore
8+
.gitignore
9+
.venv/

Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM python:3.14-slim
2+
WORKDIR /app
3+
RUN python -m venv .venv
4+
COPY requirements.txt .
5+
RUN pip install -r requirements.txt
6+
COPY . .
7+
CMD ["python", "openproject-mcp.py"]

0 commit comments

Comments
 (0)