Compare commits

..

2 Commits

Author SHA1 Message Date
Rob Watson a9caca2772 feat: serve static files
continuous-integration/drone Build is passing Details
2024-11-19 19:57:03 +01:00
Rob Watson f9b4c35f59 chore: update go.mod 2024-11-19 19:57:03 +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.18
image: golang:1.23
commands:
- go install honnef.co/go/tools/cmd/staticcheck@latest
- go build ./...

View File

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