Files
careit-fixed/backendcareit_v4/Dockerfile
2026-02-06 14:22:35 +07:00

15 lines
307 B
Docker

# Build stage
FROM golang:1.23-alpine AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -o main .
# Runtime stage
FROM alpine:latest
WORKDIR /app
RUN apk add --no-cache ca-certificates
COPY --from=builder /app/main .
EXPOSE 8081
CMD ["./main"]