Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +4 -2
Dockerfile
CHANGED
@@ -5,8 +5,10 @@ WORKDIR /app
|
|
5 |
# Install Python dependencies
|
6 |
RUN pip install requests aiohttp airtable-mcp
|
7 |
|
|
|
|
|
8 |
# Expose the port
|
9 |
EXPOSE 7860
|
10 |
|
11 |
-
# Run the
|
12 |
-
CMD ["
|
|
|
5 |
# Install Python dependencies
|
6 |
RUN pip install requests aiohttp airtable-mcp
|
7 |
|
8 |
+
COPY server.py .
|
9 |
+
|
10 |
# Expose the port
|
11 |
EXPOSE 7860
|
12 |
|
13 |
+
# Run the custom server script
|
14 |
+
CMD ["python", "server.py"]
|