Skip to main content
Glama

Controtto

by contre95
Containerfile915 B
FROM golang:bookworm AS builder # Required for alpine + sqlite3 driver ENV CGO_ENABLED=1 # RUN apk add --no-cache gcc musl-dev # RUN apk add --no-cache sqlite-libs sqlite-dev # RUN apk --no-cache add sqlite # RUN apk add --no-cache git # RUN apk add --no-cache build-base # Copy files WORKDIR /app ADD . . # Buiild RUN go mod tidy RUN go build -ldflags='-s -w -extldflags "-static"' -o /app/controtto */**.go # RUN CGO_ENABLED=1 GOOS=linux go build -o /app/controtto -installsuffix 'static' -a -ldflags '-s -w' cmd/main.go FROM scratch ENV CONTROTTO_DB_PATH=/data/pnl.db LABEL maintainer="contre95" # USER nonroot:nonroot # COPY --from=builder --chown=nonroot:nonroot /app/controtto /app/controtto WORKDIR /app COPY ./views /app/views COPY ./public /app/public COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/ COPY --from=builder /app/controtto /app/controtto ENTRYPOINT ["/app/controtto"]

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/contre95/controtto'

If you have feedback or need assistance with the MCP directory API, please join our Discord server