Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to 6.2.12 and use Alpine 3.19 #2

Merged
merged 2 commits into from
Jan 7, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-alpine:3.18 as alpine-buildstage
FROM ghcr.io/linuxserver/baseimage-alpine:3.19 as alpine-buildstage

# set version label
ARG UNRAR_VERSION=6.2.10
ARG UNRAR_VERSION=6.2.12

RUN \
echo "**** install build dependencies ****" && \
Expand Down Expand Up @@ -32,7 +32,7 @@ RUN \
FROM ghcr.io/linuxserver/baseimage-ubuntu:jammy as ubuntu-buildstage

# set version label
ARG UNRAR_VERSION=6.2.10
ARG UNRAR_VERSION=6.2.12

RUN \
echo "**** install build dependencies ****" && \
Expand All @@ -44,7 +44,7 @@ RUN \
mkdir /tmp/unrar && \
curl -o \
/tmp/unrar.tar.gz -L \
"https://www.rarlab.com/rar/unrarsrc-${UNRAR_VERSION}.tar.gz" && \
"https://www.rarlab.com/rar/unrarsrc-${UNRAR_VERSION}.tar.gz" && \
tar xf \
/tmp/unrar.tar.gz -C \
/tmp/unrar --strip-components=1 && \
Expand Down
8 changes: 4 additions & 4 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.18 as alpine-buildstage
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.19 as alpine-buildstage

# set version label
ARG UNRAR_VERSION=6.2.10
ARG UNRAR_VERSION=6.2.12

RUN \
echo "**** install build dependencies ****" && \
Expand Down Expand Up @@ -32,7 +32,7 @@ RUN \
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-jammy as ubuntu-buildstage

# set version label
ARG UNRAR_VERSION=6.2.10
ARG UNRAR_VERSION=6.2.12

RUN \
echo "**** install build dependencies ****" && \
Expand All @@ -43,7 +43,7 @@ RUN \
mkdir /tmp/unrar && \
curl -o \
/tmp/unrar.tar.gz -L \
"https://www.rarlab.com/rar/unrarsrc-${UNRAR_VERSION}.tar.gz" && \
"https://www.rarlab.com/rar/unrarsrc-${UNRAR_VERSION}.tar.gz" && \
tar xf \
/tmp/unrar.tar.gz -C \
/tmp/unrar --strip-components=1 && \
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,5 @@ full_custom_readme: |

## Versions

* **07.01.24:** - Bump to 6.2.12.
* **11.08.23:** - Initial release.