Vadim f5ad5dbb16
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 1s
wip ci/cd
2026-03-06 18:46:43 +03:00
2026-03-06 18:46:43 +03:00
2026-03-06 17:45:02 +03:00
2026-03-06 17:45:02 +03:00
2026-03-06 17:45:02 +03:00
2026-03-06 17:45:02 +03:00
2026-03-06 17:45:02 +03:00
2026-03-06 17:45:02 +03:00
2026-03-06 17:45:02 +03:00
2026-03-06 18:46:43 +03:00
2026-03-06 17:45:02 +03:00
2026-03-06 17:45:02 +03:00
2026-03-06 17:45:02 +03:00
2026-03-06 18:46:43 +03:00

Hello world

FROM golang:tip-trixie AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 go build -o main ./cmd/main.go

# --- Stage 2: Runner ---
FROM alpine:latest
WORKDIR /app
COPY --from=builder /app/main .
EXPOSE 3000
CMD ["./main"]
docker build --tag docker-gs-ping .
Description
No description provided
Readme 2.7 MiB
Languages
Go 98.5%
Makefile 0.9%
Dockerfile 0.6%