We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 39908f7 commit 44cb51dCopy full SHA for 44cb51d
Dockerfile
@@ -1,5 +1,5 @@
1
# Use an official Python runtime as a parent image
2
-FROM python:3.11-alpine
+FROM --platform=linux/amd64 python:3.11-alpine
3
4
# Set the working directory in the container
5
WORKDIR /app
@@ -22,6 +22,8 @@ RUN pip install --upgrade pip \
22
RUN pip install hatchling \
23
&& pip install .
24
25
+ENV SERVER_MODE=http
26
+
27
# Expose the port the MCP server runs on
28
EXPOSE 8000
29
0 commit comments