OryKratos/Dockerfile
pasha1coil a191a07c17
Some checks failed
Deploy / CreateImage (push) Successful in 1m36s
Deploy / DeployService (push) Failing after 25s
-
2025-03-13 11:21:17 +03:00

9 lines
144 B
Docker

FROM gitea.pena/penadevops/container-images/golang:main
WORKDIR /app
COPY . .
RUN go mod tidy
RUN go build -o app ./cmd
CMD ["./app"]