Categorygithub.com/promptlabth/ms-ai-marketplace
repository
0.0.0-20250124070701-3201dd20d74c
Repository: https://github.com/promptlabth/ms-ai-marketplace.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

ms-ai-marketplace

run windows use below dockerfile

FROM golang:1.22-alpine as builder

RUN apk add --no-cache gcc musl-dev

WORKDIR /app

COPY go.mod go.sum ./

RUN go mod download

COPY . .

ENV CGO_ENABLED=1

RUN go build -o /main ./cmd/

FROM alpine:latest  

WORKDIR /

COPY --from=builder /main ./

CMD ["/main"]