Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +3 -4
Dockerfile
CHANGED
|
@@ -10,10 +10,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
| 10 |
npm \
|
| 11 |
golang-go \
|
| 12 |
&& rm -rf /var/lib/apt/lists/*
|
| 13 |
-
curl -v https://pypi.org
|
| 14 |
-
curl -v https://api.github.com
|
| 15 |
-
curl -v https://graph.facebook.com
|
| 16 |
-
|
| 17 |
|
| 18 |
#-------git_hub_mcp_server_install---------------
|
| 19 |
RUN git clone --depth 1 https://github.com/github/github-mcp-server.git /tmp/github-mcp-server \
|
|
|
|
| 10 |
npm \
|
| 11 |
golang-go \
|
| 12 |
&& rm -rf /var/lib/apt/lists/*
|
| 13 |
+
RUN echo "== pypi.org ==" && curl -v https://pypi.org || true
|
| 14 |
+
RUN echo "== api.github.com ==" && curl -v https://api.github.com || true
|
| 15 |
+
RUN echo "== graph.facebook.com ==" && curl -v https://graph.facebook.com || true
|
|
|
|
| 16 |
|
| 17 |
#-------git_hub_mcp_server_install---------------
|
| 18 |
RUN git clone --depth 1 https://github.com/github/github-mcp-server.git /tmp/github-mcp-server \
|