Skip to content

Commit ba05550

Browse files
committed
Add noble
1 parent c4a6bb5 commit ba05550

25 files changed

Lines changed: 1913 additions & 0 deletions

noble/Dockerfile

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
FROM ubuntu:noble
2+
LABEL org.opencontainers.image.authors Victor Seva <linuxmaniac@torreviejawireless.org>
3+
4+
# Important! Update this no-op ENV variable when this Dockerfile
5+
# is updated with the current date. It will force refresh of all
6+
# of the base images and things like 'apt-get update' won't be using
7+
# old cached versions when the Dockerfile is built.
8+
ENV REFRESHED_AT 2024-08-27
9+
10+
RUN rm -rf /var/lib/apt/lists/* && apt-get update
11+
RUN echo MIRRORSITE=http://archive.ubuntu.com/ubuntu > /etc/pbuilderrc
12+
RUN DEBIAN_FRONTEND=noninteractive apt-get install -qq --assume-yes clang pbuilder
13+
14+
VOLUME /code
15+
16+
RUN mkdir -p /usr/local/src/pkg
17+
COPY debian /usr/local/src/pkg/debian
18+
19+
# get build dependences
20+
RUN cd /usr/local/src/pkg/ && /usr/lib/pbuilder/pbuilder-satisfydepends-experimental
21+
22+
# clean
23+
RUN apt-get clean && rm -rf /var/lib/apt/lists/*
24+
WORKDIR /code

noble/debian/changelog

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
kamailio (6.0.0~dev2) unstable; urgency=medium
2+
3+
* version set 6.0.0~dev2
4+
5+
-- Victor Seva <vseva@debian.org> Thu, 16 May 2024 09:46:08 +0200
6+
7+
kamailio (5.9.0~dev1) unstable; urgency=medium
8+
9+
* version set 5.9.0~dev1
10+
11+
-- Victor Seva <vseva@debian.org> Mon, 15 Apr 2024 08:52:26 +0200
12+
13+
kamailio (5.9.0~dev0) unstable; urgency=medium
14+
15+
* version set 5.9.0~dev0
16+
17+
-- Victor Seva <vseva@debian.org> Thu, 23 Feb 2024 19:45:08 +0209

noble/debian/compat

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
9

0 commit comments

Comments
 (0)