Skip to content

Commit

Permalink
Release 5.3.13 - See CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
tiredofit committed Oct 4, 2022
1 parent 61aae8c commit a88036b
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 5.3.13 2022-10-04 <dave at tiredofit dot ca>

### Changed
- Switch to clone_git_repo function


## 5.3.12 2022-08-17 <dave at tiredofit dot ca>

### Changed
Expand Down
13 changes: 5 additions & 8 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ ENV BACKUPPC_VERSION=4.4.0 \
IMAGE_NAME="tiredofit/backuppc" \
IMAGE_REPO_URL="https://github.com/tiredofit/docker-backuppc/"

RUN set -x && \
RUN source /assets/functions/00-container && \
set -x && \
apk update && \
apk upgrade && \
apk add -t .backuppc-build-deps \
Expand Down Expand Up @@ -70,25 +71,21 @@ RUN set -x && \
make install && \
\
# Compile and install BackupPC:XS
cd /usr/src && \
git clone https://github.com/backuppc/backuppc-xs.git /usr/src/backuppc-xs --branch $BACKUPPC_XS_VERSION && \
cd /usr/src/backuppc-xs && \
clone_git_repo https://github.com/backuppc/backuppc-xs.git ${BACKUPPC_XS_VERSION} && \
perl Makefile.PL && \
make && \
make test && \
make install && \
\
# Compile and install Rsync (BPC version)
git clone https://github.com/backuppc/rsync-bpc.git /usr/src/rsync-bpc --branch $RSYNC_BPC_VERSION && \
cd /usr/src/rsync-bpc && \
clone_git_repo https://github.com/backuppc/rsync-bpc.git ${RSYNC_BPC_VERSION} && \
./configure && \
make reconfigure && \
make && \
make install && \
\
# Compile and install PAR2
git clone https://github.com/Parchive/par2cmdline.git /usr/src/par2cmdline --branch $PAR2_VERSION && \
cd /usr/src/par2cmdline && \
clone_git_repo https://github.com/Parchive/par2cmdline.git ${PAR2_VERSION} && \
./automake.sh && \
./configure && \
make && \
Expand Down

0 comments on commit a88036b

Please sign in to comment.