Skip to content

Commit ec7d3d0

Browse files
Add Dockerfile for containerized application setup
1 parent 29b5a75 commit ec7d3d0

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

Dockerfile

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

0 commit comments

Comments
 (0)