fix
Some checks failed
Create and publish a Docker image 🚀 / build-and-push-image (push) Failing after 24s

This commit is contained in:
Smile Rex
2026-01-26 17:36:14 +03:00
parent 243fd38554
commit 1c553dafa5

View File

@@ -10,7 +10,7 @@ WORKDIR /app
COPY go.mod ./ COPY go.mod ./
RUN go mod download RUN go mod download
COPY main.go ./ COPY main.go ./
COPY --from=frontend_builder /app/build ./build COPY --from=build /app/build ./build
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o main RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o main
FROM alpine:latest FROM alpine:latest