Skip to content

Commit

Permalink
Add noble
Browse files Browse the repository at this point in the history
  • Loading branch information
linuxmaniac committed Aug 27, 2024
1 parent c4a6bb5 commit ba05550
Show file tree
Hide file tree
Showing 25 changed files with 1,913 additions and 0 deletions.
24 changes: 24 additions & 0 deletions noble/Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
FROM ubuntu:noble
LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawireless.org>

# Important! Update this no-op ENV variable when this Dockerfile
# is updated with the current date. It will force refresh of all
# of the base images and things like 'apt-get update' won't be using
# old cached versions when the Dockerfile is built.
ENV REFRESHED_AT 2024-08-27

RUN rm -rf /var/lib/apt/lists/* && apt-get update
RUN echo MIRRORSITE=http://archive.ubuntu.com/ubuntu > /etc/pbuilderrc
RUN DEBIAN_FRONTEND=noninteractive apt-get install -qq --assume-yes clang pbuilder

VOLUME /code

RUN mkdir -p /usr/local/src/pkg
COPY debian /usr/local/src/pkg/debian

# get build dependences
RUN cd /usr/local/src/pkg/ && /usr/lib/pbuilder/pbuilder-satisfydepends-experimental

# clean
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
WORKDIR /code
17 changes: 17 additions & 0 deletions noble/debian/changelog
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
kamailio (6.0.0~dev2) unstable; urgency=medium

* version set 6.0.0~dev2

-- Victor Seva <vseva@debian.org> Thu, 16 May 2024 09:46:08 +0200

kamailio (5.9.0~dev1) unstable; urgency=medium

* version set 5.9.0~dev1

-- Victor Seva <vseva@debian.org> Mon, 15 Apr 2024 08:52:26 +0200

kamailio (5.9.0~dev0) unstable; urgency=medium

* version set 5.9.0~dev0

-- Victor Seva <vseva@debian.org> Thu, 23 Feb 2024 19:45:08 +0209
1 change: 1 addition & 0 deletions noble/debian/compat
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
9
Loading

0 comments on commit ba05550

Please sign in to comment.