mcp-test / Dockerfile
rclon's picture
Update Dockerfile
85bf3a8 verified
raw
history blame
151 Bytes
FROM golang:1.21-alpine
WORKDIR /app
COPY main.go .
RUN go build -o main main.go
EXPOSE 7860
CMD ["./main", "-t", "sse", "-p", "7860"]