Compare commits

..

No commits in common. "1ab5a20fb2a8e8eda3cc633dee3bb9a949878b24" and "c1085924f73824aa02d4cab977681fe1c10512f3" 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.20 image: golang:1.18
commands: commands:
- go test ./... - go test ./...
build: build:

View File

@ -1,4 +1,4 @@
FROM golang:1.20 FROM golang:1.18
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