diff --git a/Dockerfile b/Dockerfile index a1c1ff4..a812eec 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.20.1 +FROM alpine:3.20.2 ARG TARGETOS ARG TARGETARCH diff --git a/Dockerfile.single-platform b/Dockerfile.single-platform index 5309059..0336871 100644 --- a/Dockerfile.single-platform +++ b/Dockerfile.single-platform @@ -1,11 +1,11 @@ -FROM golang:1.22.3-alpine3.19 AS builder +FROM golang:1.22.5-alpine3.20 AS builder WORKDIR /app COPY . /app RUN CGO_ENABLED=0 go build . -FROM alpine:3.19 +FROM alpine:3.20.2 WORKDIR /app COPY --from=builder /app/glance . diff --git a/go.mod b/go.mod index 3acda17..17aa4d4 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module github.com/glanceapp/glance -go 1.22.3 +go 1.22.5 require ( github.com/mmcdole/gofeed v1.3.0