-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue 104/support for ubuntu 24 (#143)
* add support for ubuntu 24 and debian 12 * fix caseness for dockerfiles * add ubuntu 24 and debian 12 jobs to build matrix
- Loading branch information
1 parent
a570aa9
commit aa15a77
Showing
9 changed files
with
16 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM quay.io/centos/centos:stream9 as base | ||
FROM quay.io/centos/centos:stream9 AS base | ||
|
||
# Install dependencies | ||
RUN yum install -y popt-devel gcc-c++ make diffutils |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM debian:10 as base | ||
FROM debian:10 AS base | ||
|
||
# Install dependencies | ||
RUN apt-get update && apt-get install -y --no-install-recommends make g++ libpopt-dev libpopt0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM debian:11 as base | ||
FROM debian:11 AS base | ||
|
||
# Install dependencies | ||
RUN apt-get update && apt-get install -y --no-install-recommends make g++ libpopt-dev libpopt0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM debian:12 AS base | ||
|
||
# Install dependencies | ||
RUN apt-get update && apt-get install -y --no-install-recommends make g++ libpopt-dev libpopt0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ubuntu:20.04 as base | ||
FROM ubuntu:20.04 AS base | ||
|
||
# Install dependencies | ||
RUN apt-get update && apt-get install -y --no-install-recommends make g++ libpopt-dev libpopt0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ubuntu:22.04 as base | ||
FROM ubuntu:24.04 AS base | ||
|
||
# Install dependencies | ||
RUN apt-get update && apt-get install -y --no-install-recommends make g++ libpopt-dev libpopt0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
FROM ubuntu:22.04 as base | ||
FROM ubuntu:22.04 AS base | ||
|
||
# Install dependencies | ||
RUN apt-get update && apt-get install -y --no-install-recommends make clang libpopt-dev libpopt0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
FROM ubuntu:22.04 AS base | ||
|
||
# Install dependencies | ||
RUN apt-get update && apt-get install -y --no-install-recommends make g++ libpopt-dev libpopt0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters