From 9b54ad6d02d8696fd832b7c85e4443f76fbabe57 Mon Sep 17 00:00:00 2001 From: drumato Date: Wed, 5 Mar 2025 15:38:37 +0900 Subject: [PATCH] =?UTF-8?q?Go=E3=82=92=E3=82=A2=E3=83=83=E3=83=97=E3=83=87?= =?UTF-8?q?=E3=83=BC=E3=83=88=E3=81=97Debian=E3=81=8B=E3=82=89Ubuntu?= =?UTF-8?q?=E3=83=99=E3=83=BC=E3=82=B9=E3=81=A7=E3=82=A4=E3=83=A1=E3=83=BC?= =?UTF-8?q?=E3=82=B8=E3=82=92=E4=BD=9C=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: drumato --- Dockerfile | 4 ++-- go.mod | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) 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