Skip to content

Commit 44cb51d

Browse files
author
Pedro Rodrigues
committed
Fix dockerfile
1 parent 39908f7 commit 44cb51d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Dockerfile

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Use an official Python runtime as a parent image
2-
FROM python:3.11-alpine
2+
FROM --platform=linux/amd64 python:3.11-alpine
33

44
# Set the working directory in the container
55
WORKDIR /app
@@ -22,6 +22,8 @@ RUN pip install --upgrade pip \
2222
RUN pip install hatchling \
2323
&& pip install .
2424

25+
ENV SERVER_MODE=http
26+
2527
# Expose the port the MCP server runs on
2628
EXPOSE 8000
2729

0 commit comments

Comments
 (0)