Merge pull request #6 from linuxserver/jammy

This commit is contained in:
Adam 2022-12-16 15:13:33 +00:00 committed by GitHub
commit bbdb04fb40
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 19 additions and 2 deletions

View file

@ -0,0 +1,12 @@
name: Comment on invalid interaction
on:
issues:
types:
- labeled
jobs:
add-comment-on-invalid:
if: github.event.label.name == 'invalid'
permissions:
issues: write
uses: linuxserver/github-workflows/.github/workflows/invalid-interaction-helper.yml@v1
secrets: inherit

View file

@ -1,4 +1,6 @@
FROM ghcr.io/linuxserver/baseimage-rdesktop-web:focal
# syntax=docker/dockerfile:1
FROM ghcr.io/linuxserver/baseimage-rdesktop-web:jammy
# set version label
ARG BUILD_DATE
@ -20,7 +22,7 @@ RUN \
mkdir -p /app/audacity/ && \
curl -o \
/app/audacity/audacity -L \
"https://github.com/audacity/audacity/releases/download/Audacity-${AUDACITY_VERSION}/audacity-linux-${AUDACITY_VERSION}-x86_64.AppImage" && \
"https://github.com/audacity/audacity/releases/download/Audacity-${AUDACITY_VERSION}/audacity-linux-${AUDACITY_VERSION}-x64.AppImage" && \
chmod +x /app/audacity/audacity && \
echo "**** cleanup ****" && \
rm -rf \
@ -33,4 +35,5 @@ COPY /root /
# ports and volumes
EXPOSE 3000
VOLUME /config

View file

@ -227,5 +227,6 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **13.12.22:** - Rebase to Jammy.
* **14.09.21:** - Use the official appimage, switch to single arch (x86_64). Armhf and aarch64 users can remain on version 3.0.2 but there won't be further updates.
* **07.04.21:** - Initial release.

View file

@ -41,5 +41,6 @@ app_setup_block: |
# changelog
changelogs:
- { date: "13.12.22:", desc: "Rebase to Jammy." }
- { date: "14.09.21:", desc: "Use the official appimage, switch to single arch (x86_64). Armhf and aarch64 users can remain on version 3.0.2 but there won't be further updates." }
- { date: "07.04.21:", desc: "Initial release." }