mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2025-07-30 09:01:39 +03:00
[dev] converted some sources.list to .sources at trixie and sid
This commit is contained in:
parent
e626b64cda
commit
d12d837369
@ -167,9 +167,12 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
||||
RUN gpg --keyserver keyserver.ubuntu.com --recv-keys F911AB184317630C59970973E363C90F8F1B6217 && \
|
||||
gpg --export --output /etc/apt/keyrings/launchpad-git.gpg F911AB184317630C59970973E363C90F8F1B6217 && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.sources && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.sources
|
||||
|
||||
COPY etc/apt/sources.list.d/launchpad_git-mainline.sources /etc/apt/sources.list.d/launchpad_git-mainline.sources
|
||||
COPY etc/apt/sources.list.d/launchpad_git-stable.sources /etc/apt/sources.list.d/launchpad_git-stable.sources
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --allow-unauthenticated --no-install-recommends --no-install-suggests \
|
||||
git
|
||||
@ -182,8 +185,10 @@ RUN echo "=============================================" && \
|
||||
# git-lfs official binary
|
||||
##################################################################
|
||||
RUN curl -fsSL https://packagecloud.io/github/git-lfs/gpgkey | gpg --dearmor > /etc/apt/keyrings/github_git-lfs-archive-keyring.gpg && \
|
||||
rm -rfv /etc/apt/sources.list.d/github_git-lfs.list
|
||||
COPY etc/apt/sources.list.d/github_git-lfs.list /etc/apt/sources.list.d/github_git-lfs.list
|
||||
rm -rfv /etc/apt/sources.list.d/github_git-lfs.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/github_git-lfs.sources
|
||||
|
||||
COPY etc/apt/sources.list.d/github_git-lfs.sources /etc/apt/sources.list.d/github_git-lfs.sources
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --allow-unauthenticated --no-install-recommends --no-install-suggests \
|
||||
git \
|
||||
|
@ -1,2 +0,0 @@
|
||||
deb [trusted=yes] https://packagecloud.io/github/git-lfs/debian/ trixie main
|
||||
deb-src [trusted=yes] https://packagecloud.io/github/git-lfs/debian/ trixie main
|
@ -0,0 +1,6 @@
|
||||
Types: deb deb-src
|
||||
URIs: https://packagecloud.io/github/git-lfs/debian/
|
||||
Suites: trixie
|
||||
Components: main
|
||||
Trusted: yes
|
||||
Enabled: yes
|
@ -1,2 +0,0 @@
|
||||
deb [signed-by=/etc/apt/keyrings/github_git-lfs-archive-keyring.gpg] https://packagecloud.io/github/git-lfs/debian/ trixie main
|
||||
deb-src [signed-by=/etc/apt/keyrings/github_git-lfs-archive-keyring.gpg] https://packagecloud.io/github/git-lfs/debian/ trixie main
|
@ -0,0 +1,7 @@
|
||||
Types: deb deb-src
|
||||
URIs: https://packagecloud.io/github/git-lfs/debian/
|
||||
Suites: trixie
|
||||
Components: main
|
||||
Signed-By: /etc/apt/keyrings/github_git-lfs-archive-keyring.gpg
|
||||
Trusted: yes
|
||||
Enabled: yes
|
@ -1,5 +0,0 @@
|
||||
# mainline
|
||||
deb [signed-by=/etc/apt/keyrings/launchpad-git.gpg] https://ppa.launchpadcontent.net/git-core/candidate/ubuntu noble main
|
||||
deb-src [signed-by=/etc/apt/keyrings/launchpad-git.gpg] https://ppa.launchpadcontent.net/git-core/candidate/ubuntu noble main
|
||||
|
||||
|
@ -0,0 +1,7 @@
|
||||
Types: deb deb-src
|
||||
URIs: https://ppa.launchpadcontent.net/git-core/candidate/ubuntu
|
||||
Suites: noble
|
||||
Components: main
|
||||
Signed-By: /etc/apt/keyrings/launchpad-git.gpg
|
||||
Trusted: yes
|
||||
Enabled: yes
|
@ -1,3 +0,0 @@
|
||||
# stable
|
||||
deb [signed-by=/etc/apt/keyrings/launchpad-git.gpg] https://ppa.launchpadcontent.net/git-core/ppa/ubuntu noble main
|
||||
deb-src [signed-by=/etc/apt/keyrings/launchpad-git.gpg] https://ppa.launchpadcontent.net/git-core/ppa/ubuntu noble main
|
@ -0,0 +1,7 @@
|
||||
Types: deb deb-src
|
||||
URIs: https://ppa.launchpadcontent.net/git-core/ppa/ubuntu
|
||||
Suites: noble
|
||||
Components: main
|
||||
Signed-By: /etc/apt/keyrings/launchpad-git.gpg
|
||||
Trusted: yes
|
||||
Enabled: yes
|
@ -167,9 +167,12 @@ RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selectio
|
||||
RUN gpg --keyserver keyserver.ubuntu.com --recv-keys F911AB184317630C59970973E363C90F8F1B6217 && \
|
||||
gpg --export --output /etc/apt/keyrings/launchpad-git.gpg F911AB184317630C59970973E363C90F8F1B6217 && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-mainline.list /etc/apt/sources.list.d/launchpad_git-mainline.list
|
||||
COPY etc/apt/sources.list.d/launchpad_git-stable.list /etc/apt/sources.list.d/launchpad_git-stable.list
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-mainline.sources && \
|
||||
rm -rfv /etc/apt/sources.list.d/launchpad_git-stable.sources
|
||||
|
||||
COPY etc/apt/sources.list.d/launchpad_git-mainline.sources /etc/apt/sources.list.d/launchpad_git-mainline.sources
|
||||
COPY etc/apt/sources.list.d/launchpad_git-stable.sources /etc/apt/sources.list.d/launchpad_git-stable.sources
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --allow-unauthenticated --no-install-recommends --no-install-suggests \
|
||||
git
|
||||
@ -182,8 +185,10 @@ RUN echo "=============================================" && \
|
||||
# git-lfs official binary
|
||||
##################################################################
|
||||
RUN curl -fsSL https://packagecloud.io/github/git-lfs/gpgkey | gpg --dearmor > /etc/apt/keyrings/github_git-lfs-archive-keyring.gpg && \
|
||||
rm -rfv /etc/apt/sources.list.d/github_git-lfs.list
|
||||
COPY etc/apt/sources.list.d/github_git-lfs.list /etc/apt/sources.list.d/github_git-lfs.list
|
||||
rm -rfv /etc/apt/sources.list.d/github_git-lfs.list && \
|
||||
rm -rfv /etc/apt/sources.list.d/github_git-lfs.sources
|
||||
|
||||
COPY etc/apt/sources.list.d/github_git-lfs.sources /etc/apt/sources.list.d/github_git-lfs.sources
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --allow-unauthenticated --no-install-recommends --no-install-suggests \
|
||||
git \
|
||||
|
@ -1,2 +0,0 @@
|
||||
deb [trusted=yes] https://packagecloud.io/github/git-lfs/debian/ trixie main
|
||||
deb-src [trusted=yes] https://packagecloud.io/github/git-lfs/debian/ trixie main
|
@ -0,0 +1,6 @@
|
||||
Types: deb deb-src
|
||||
URIs: https://packagecloud.io/github/git-lfs/debian/
|
||||
Suites: trixie
|
||||
Components: main
|
||||
Trusted: yes
|
||||
Enabled: yes
|
@ -1,2 +0,0 @@
|
||||
deb [signed-by=/etc/apt/keyrings/github_git-lfs-archive-keyring.gpg] https://packagecloud.io/github/git-lfs/debian/ trixie main
|
||||
deb-src [signed-by=/etc/apt/keyrings/github_git-lfs-archive-keyring.gpg] https://packagecloud.io/github/git-lfs/debian/ trixie main
|
@ -0,0 +1,7 @@
|
||||
Types: deb deb-src
|
||||
URIs: https://packagecloud.io/github/git-lfs/debian/
|
||||
Suites: trixie
|
||||
Components: main
|
||||
Signed-By: /etc/apt/keyrings/github_git-lfs-archive-keyring.gpg
|
||||
Trusted: yes
|
||||
Enabled: yes
|
@ -1,5 +0,0 @@
|
||||
# mainline
|
||||
deb [signed-by=/etc/apt/keyrings/launchpad-git.gpg] https://ppa.launchpadcontent.net/git-core/candidate/ubuntu noble main
|
||||
deb-src [signed-by=/etc/apt/keyrings/launchpad-git.gpg] https://ppa.launchpadcontent.net/git-core/candidate/ubuntu noble main
|
||||
|
||||
|
@ -0,0 +1,7 @@
|
||||
Types: deb deb-src
|
||||
URIs: https://ppa.launchpadcontent.net/git-core/candidate/ubuntu
|
||||
Suites: noble
|
||||
Components: main
|
||||
Signed-By: /etc/apt/keyrings/launchpad-git.gpg
|
||||
Trusted: yes
|
||||
Enabled: yes
|
@ -1,3 +0,0 @@
|
||||
# stable
|
||||
deb [signed-by=/etc/apt/keyrings/launchpad-git.gpg] https://ppa.launchpadcontent.net/git-core/ppa/ubuntu noble main
|
||||
deb-src [signed-by=/etc/apt/keyrings/launchpad-git.gpg] https://ppa.launchpadcontent.net/git-core/ppa/ubuntu noble main
|
@ -0,0 +1,7 @@
|
||||
Types: deb deb-src
|
||||
URIs: https://ppa.launchpadcontent.net/git-core/ppa/ubuntu
|
||||
Suites: noble
|
||||
Components: main
|
||||
Signed-By: /etc/apt/keyrings/launchpad-git.gpg
|
||||
Trusted: yes
|
||||
Enabled: yes
|
Loading…
x
Reference in New Issue
Block a user