-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c4a6bb5
commit ba05550
Showing
25 changed files
with
1,913 additions
and
0 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 |
---|---|---|
@@ -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 |
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,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 |
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 @@ | ||
9 |
Oops, something went wrong.