Compare commits

...

2 Commits

Author SHA1 Message Date
73a964ea7a update go version
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
2024-06-26 23:10:30 -04:00
d843e2f5bf Merge pull request 'gldnsmerge' (#1) from gldnsmerge into master
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
Reviewed-on: #1
2024-06-26 22:56:15 -04:00
2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM golang:1.20 as builder
FROM golang:1.21 as builder
WORKDIR /go/src/app
COPY . .
RUN apt update && apt upgrade -y
@ -6,7 +6,7 @@ RUN CGO_ENABLED=0 go build
FROM alpine:latest as final
WORKDIR /app
RUN mkdir -p /lib64
RUN mkdir -p /lib64
COPY --from=builder /go/src/app/tildewatch /app/
CMD ["/app/tildewatch"]

2
go.mod
View File

@ -1,6 +1,6 @@
module git.saintnet.tech/stryan/tildewatch
go 1.20
go 1.21
require (
github.com/charmbracelet/log v0.4.0