Compare commits

..

No commits in common. "master" and "gldnsmerge" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM golang:1.21 as builder
FROM golang:1.20 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.21
go 1.20
require (
github.com/charmbracelet/log v0.4.0