Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-alpine:3.12
FROM ghcr.io/linuxserver/baseimage-alpine:3.13

# set version label
ARG BUILD_DATE
Expand All @@ -19,5 +19,5 @@ RUN \
else \
YQ="yq==${YQ_VERSION}"; \
fi && \
pip3 install -U --no-cache-dir \
pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine/ \
${YQ}
4 changes: 2 additions & 2 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.12
FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.13

# set version label
ARG BUILD_DATE
Expand All @@ -19,5 +19,5 @@ RUN \
else \
YQ="yq==${YQ_VERSION}"; \
fi && \
pip3 install -U --no-cache-dir \
pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine/ \
${YQ}
4 changes: 2 additions & 2 deletions Dockerfile.armhf
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.12
FROM ghcr.io/linuxserver/baseimage-alpine:arm32v7-3.13

# set version label
ARG BUILD_DATE
Expand All @@ -19,5 +19,5 @@ RUN \
else \
YQ="yq==${YQ_VERSION}"; \
fi && \
pip3 install -U --no-cache-dir \
pip3 install -U --no-cache-dir --find-links https://wheel-index.linuxserver.io/alpine/ \
${YQ}
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -147,5 +147,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **18.05.21:** - Rebase to 3.13. add linuxserver wheel repo.
* **09.10.20:** - Fix run scripts evaluating `$` in cases where they should not (ex: inside single quotes). Please rerun the [Recommended method](https://github.com/linuxserver/docker-yq#recommended-method) install/setup commands.
* **07.10.20:** - Initial Release.
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ full_custom_readme: |

## Versions

* **18.05.21:** - Rebase to 3.13. add linuxserver wheel repo.
* **09.10.20:** - Fix run scripts evaluating `$` in cases where they should not (ex: inside single quotes). Please rerun the [Recommended method](https://github.com/linuxserver/docker-yq#recommended-method) install/setup commands.
* **07.10.20:** - Initial Release.

Expand Down