diff --git a/Dockerfile b/Dockerfile index a7bdc5f..72377ee 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.21-bullseye AS build +FROM golang:1.24-bookworm AS build ARG OYAKI_VERSION @@ -8,7 +8,7 @@ COPY . /go/src/oyaki RUN apt update && apt install -y libvips-dev RUN go build -ldflags "-s -w -X main.version=${OYAKI_VERSION}" -o /go/bin/oyaki -FROM debian:bookworm +FROM ubuntu:noble RUN apt update && apt install -y libvips-dev diff --git a/go.mod b/go.mod index ae9347d..4bb213a 100644 --- a/go.mod +++ b/go.mod @@ -1,5 +1,5 @@ module github.com/pepabo/oyaki -go 1.19 +go 1.24 require github.com/h2non/bimg v1.1.9