Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.21-bullseye AS build
FROM golang:1.24-bookworm AS build

ARG OYAKI_VERSION

Expand All @@ -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

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/pepabo/oyaki

go 1.19
go 1.24

require github.com/h2non/bimg v1.1.9
Loading