chore: update content and add generated PDF

This commit is contained in:
Baohua Yang
2026-03-27 08:43:47 -07:00
parent 60df65e65b
commit f2f6858745
10 changed files with 24 additions and 24 deletions

View File

@@ -23,7 +23,7 @@
```dockerfile
## Build stage
FROM golang:1.23 AS builder
FROM golang:1.26 AS builder
WORKDIR /app
COPY . .
RUN go build -o main .
@@ -48,7 +48,7 @@ stages:
unit_test:
stage: test
image: golang:1.23
image: golang:1.26
script:
- go test ./...