-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update filesender version to 2.51; SSP version to 1.19.8
- Loading branch information
Showing
1 changed file
with
3 additions
and
3 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 |
---|---|---|
|
@@ -3,9 +3,9 @@ LABEL maintainer="Julian Reith <[email protected]>" | |
LABEL description="FileSender: send large files securely and encrypted (on alpine)" | ||
|
||
# build args | ||
ARG REF=2.40 | ||
ARG REF=2.51 | ||
ARG REF_SUM="" | ||
ARG SSP_REF=1.19.7 | ||
ARG SSP_REF=1.19.8 | ||
ARG SSP_SUM="ca06d22d265fb75ee0f91d1e013db167dcc33ee449d03a81bd20160f899273cf" | ||
|
||
ENV FILESENDER_VERSION=$REF \ | ||
|
@@ -30,7 +30,7 @@ RUN apk -U upgrade && \ | |
|
||
# download filesender | ||
RUN cd /opt && \ | ||
curl -kL https://github.com/filesender/filesender/archive/master-filesender-${FILESENDER_VERSION}.tar.gz | tar xz && \ | ||
curl -kL https://github.com/filesender/filesender/archive/refs/tags/filesender-${FILESENDER_VERSION}.tar.gz | tar xz && \ | ||
mv filesender-* filesender && \ | ||
cd filesender && \ | ||
mkdir -p files tmp log && \ | ||
|