Remove mcp-gateway/forgejo-mcp/Dockerfile
This commit is contained in:
parent
10ea5eabf2
commit
fa552541a9
1 changed files with 0 additions and 18 deletions
|
|
@ -1,18 +0,0 @@
|
|||
FROM python:3.12-slim-bookworm
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
|
||||
COPY forgejo_mcp.py .
|
||||
COPY entrypoint.py .
|
||||
|
||||
ENV PORT=8400
|
||||
|
||||
EXPOSE 8400
|
||||
|
||||
HEALTHCHECK --interval=30s --timeout=5s --start-period=15s \
|
||||
CMD python3 -c "import urllib.request; urllib.request.urlopen('http://localhost:8400/mcp', timeout=5)"
|
||||
|
||||
CMD ["python3", "entrypoint.py"]
|
||||
Loading…
Reference in a new issue