We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cbe9b3a commit 738c3a2Copy full SHA for 738c3a2
UnityMcpServer/src/Dockerfile
@@ -0,0 +1,27 @@
1
+FROM python:3.12-slim
2
+
3
+# Install required system dependencies
4
+RUN apt-get update && apt-get install -y --no-install-recommends \
5
+ git \
6
+ && rm -rf /var/lib/apt/lists/*
7
8
+# Set working directory
9
+WORKDIR /app
10
11
+# Install uv package manager
12
+RUN pip install uv
13
14
+# Copy required files
15
+COPY config.py /app/
16
+COPY server.py /app/
17
+COPY unity_connection.py /app/
18
+COPY pyproject.toml /app/
19
+COPY __init__.py /app/
20
+COPY tools/ /app/tools/
21
22
+# Install dependencies using uv
23
+RUN uv pip install --system -e .
24
25
26
+# Command to run the server
27
+CMD ["uv", "run", "server.py"]
0 commit comments