Skip to content

Commit

Permalink
Docker: Use ubuntu 24.04 image
Browse files Browse the repository at this point in the history
  • Loading branch information
luigi311 committed Dec 16, 2024
1 parent b7531bc commit 32d32b4
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/docker-existing-dockerfile
{
"image": "ghcr.io/luigi311/tanoshi-builder:sha-662acc4-slim",
"image": "ghcr.io/luigi311/tanoshi-builder:sha-172c475-slim",

// Features to add to the dev container. More info: https://containers.dev/features.
//"features": {},
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
build-cli:
runs-on: ubuntu-latest
container:
image: ghcr.io/luigi311/tanoshi-builder:sha-662acc4-slim
image: ghcr.io/luigi311/tanoshi-builder:sha-172c475-slim
steps:
- uses: actions/checkout@v4

Expand Down Expand Up @@ -115,7 +115,7 @@ jobs:
build-web:
runs-on: ubuntu-latest
container:
image: ghcr.io/luigi311/tanoshi-builder:sha-662acc4-slim
image: ghcr.io/luigi311/tanoshi-builder:sha-172c475-slim
steps:
- uses: actions/checkout@v4

Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/luigi311/tanoshi-builder:sha-662acc4-slim AS base
FROM ghcr.io/luigi311/tanoshi-builder:sha-172c475-slim AS base

# Backend builder
FROM base AS builder
Expand All @@ -11,7 +11,7 @@ RUN cargo build -p tanoshi --release



FROM debian:trixie-slim AS runtime
FROM ubuntu:24.04 AS runtime

RUN apt update && apt upgrade -y && apt install --reinstall -y tini ca-certificates libssl3 libxml2

Expand Down

0 comments on commit 32d32b4

Please sign in to comment.