Skip to content

Commit

Permalink
Migrate to Ubuntu 24.04 for GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
glegoux committed Nov 15, 2024
1 parent 3cae468 commit f55539c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:

jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04

strategy:
matrix:
Expand Down
5 changes: 3 additions & 2 deletions build-template/krb5-ubuntu/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,17 @@
FROM ubuntu:22.04

# environment variables
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# build environment
WORKDIR /root/

# update
RUN . /etc/os-release && echo "deb http://archive.ubuntu.com/ubuntu/ $VERSION_CODENAME universe" >> /etc/apt/sources.list
RUN apt update -y

# editor
RUN apt install -y vim nano
RUN apt install -y nano

# general
RUN apt install -y sudo sshpass
Expand Down
7 changes: 4 additions & 3 deletions build-ubuntu-example.com/krb5-ubuntu/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,17 @@
FROM ubuntu:22.04

# environment variables
ENV DEBIAN_FRONTEND noninteractive
ENV DEBIAN_FRONTEND=noninteractive

# build environment
WORKDIR /root/

# update
RUN . /etc/os-release && echo "deb http://archive.ubuntu.com/ubuntu/ $VERSION_CODENAME universe" >> /etc/apt/sources.list
RUN apt update -y

# editor
RUN apt install -y vim nano
RUN apt install -y nano

# general
RUN apt install -y sudo sshpass
Expand All @@ -39,4 +40,4 @@ RUN apt install -y maven

# supervisord
RUN pip install supervisor
RUN mkdir -p /var/log/supervisord/
RUN mkdir -p /var/log/supervisord/

0 comments on commit f55539c

Please sign in to comment.