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: pipeline:
test: test:
image: golang:1.21 image: golang:1.20
commands: commands:
- go test ./... - go test ./...
build: build:

View File

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