Compare commits

..

2 Commits

Author SHA1 Message Date
Rob Watson
bd9f9883bd feat: serve static files 2024-11-19 19:55:01 +01:00
Rob Watson
80a775255e chore: update go.mod 2024-11-18 20:52:26 +01:00
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ name: default
steps:
- name: backend
image: golang:1.23
image: golang:1.18
commands:
- go install honnef.co/go/tools/cmd/staticcheck@latest
- go build ./...

View File

@ -1,4 +1,4 @@
FROM golang:1.23-alpine3.20 as go-builder
FROM golang:1.18-alpine3.15 as go-builder
ENV GOPATH ""
RUN apk add git