storer/Dockerfile
skeris 9b06e41984
Some checks failed
Deploy / ValidateConfig (push) Failing after 18s
Deploy / CreateImage (push) Has been skipped
Deploy / DeployService (push) Has been skipped
try to add config validateion stage - detach environments to env file
2025-04-16 14:20:17 +03:00

11 lines
307 B
Docker

FROM gitea.pena:3000/penadevops/container-images/golang:main as build
WORKDIR /app
COPY . .
RUN apk add git
RUN go mod download
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o stor ./cmd/main.go
FROM gitea.pena:3000/penadevops/container-images/alpine:main
COPY --from=build /app/stor .
CMD ["/stor"]