modified: .gitea/workflows/ docker-image.deploy.yml
All checks were successful
/ build-docker-image (push) Successful in 10s

modified:   pbsclient/docker/Dockerfile
This commit is contained in:
2025-01-13 23:50:05 +00:00
parent 09e7fefab8
commit f4f19f689b
2 changed files with 2 additions and 2 deletions

View File

@@ -13,7 +13,7 @@ jobs:
steps: steps:
- name: Checkout code - name: Checkout code
uses: actions/checkout@v2 uses: actions/checkout@v4
- name: Log in to git.limbosolutions.com docker registry - name: Log in to git.limbosolutions.com docker registry
uses: docker/login-action@v3 uses: docker/login-action@v3

View File

@@ -3,7 +3,7 @@ FROM debian:bookworm-slim
RUN apt-get update RUN apt-get update
RUN apt install -y wget RUN apt install -y wget
RUN wget https://enterprise.proxmox.com/debian/proxmox-release-bookworm.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg RUN wget https://enterprise.proxmox.com/debian/proxmox-release-bookworm.gpg -O /etc/apt/trusted.gpg.d/proxmox-release-bookworm.gpg
RUN echo "deb http://download.proxmox.com/debian/pbs-client bookworm main" >> /etc/apt/sources.list.d/pbs.list; RUN echo "deb http://download.proxmox.com/debian/pbs-client bookworm main" > /etc/apt/sources.list.d/pbs.list
RUN apt update RUN apt update
RUN apt install -y proxmox-backup-client RUN apt install -y proxmox-backup-client
COPY ./docker/scripts/entrypoint.sh /entrypoint.sh COPY ./docker/scripts/entrypoint.sh /entrypoint.sh