konulu-konum-backend/Dockerfile
log101 a4f542e15d
Some checks failed
/ build-and-push-image (push) Failing after 38s
ci: add new build step
2024-07-29 20:39:43 +03:00

19 lines
392 B
Docker

FROM golang:1.22.3-alpine AS builder
WORKDIR /usr/src/app
# pre-copy/cache go.mod for pre-downloading dependencies and only redownloading them in subsequent builds if they change
COPY go.mod go.sum ./
RUN go mod download && go mod verify
COPY . .
RUN go build -v -o konulukonum
RUN go test -v ./...
FROM alpine
WORKDIR /root/app
COPY --from=builder /usr/src/app .
CMD ["./konulukonum"]