Files
meet-api/Dockerfile
Smile Rex f85d36b183
All checks were successful
Create and publish a Docker image 🚀 / build-and-push-image (push) Successful in 1m34s
add files and ci
2026-01-26 15:18:05 +03:00

11 lines
178 B
Docker

FROM golang:alpine AS builder
WORKDIR /app
COPY . .
RUN go build -o main .
FROM alpine:latest
WORKDIR /app
COPY --from=builder /app/main /app/main
EXPOSE 8080
CMD ["/app/main"]