Compare commits

..

No commits in common. "27c3a5c88172c15bb5a7b04591209eae490b537d" and "d2b68c18892f9aff900c244c025b8119db3028ca" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
pipeline:
test:
image: golang:1.21
image: golang:1.20
commands:
- go test ./...
build:

View File

@ -1,4 +1,4 @@
FROM golang:1.21
FROM golang:1.20
WORKDIR /src
COPY . ./
RUN CGO_ENABLED=0 GOOS=linux go build -o server ./cmd/serve