Merge pull request #30 from linuxserver/insiders-noble

insiders: rebase to noble
This commit is contained in:
aptalca 2024-06-18 11:10:44 -04:00 committed by GitHub
commit 858e66ba3f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 10 additions and 8 deletions

View File

@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-ubuntu:jammy
FROM ghcr.io/linuxserver/baseimage-ubuntu:noble
# set version label
ARG BUILD_DATE
@ -20,7 +20,6 @@ RUN \
libatomic1 \
nano \
net-tools \
netcat \
sudo && \
echo "**** install openvscode-server ****" && \
if [ -z ${CODE_RELEASE+x} ]; then \
@ -35,6 +34,7 @@ RUN \
tar xf \
/tmp/openvscode-server.tar.gz -C \
/app/openvscode-server/ --strip-components=1 && \
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
echo "**** clean up ****" && \
apt-get clean && \
rm -rf \

View File

@ -1,4 +1,4 @@
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-jammy
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-noble
# set version label
ARG BUILD_DATE
@ -20,7 +20,6 @@ RUN \
libatomic1 \
nano \
net-tools \
netcat \
sudo && \
echo "**** install openvscode-server ****" && \
if [ -z ${CODE_RELEASE+x} ]; then \
@ -35,6 +34,7 @@ RUN \
tar xf \
/tmp/openvscode-server.tar.gz -C \
/app/openvscode-server/ --strip-components=1 && \
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
echo "**** clean up ****" && \
apt-get clean && \
rm -rf \

4
Jenkinsfile vendored
View File

@ -31,8 +31,8 @@ pipeline {
CI_PORT='3000'
CI_SSL='false'
CI_DELAY='120'
CI_DOCKERENV='TZ=US/Pacific|CONNECTION_TOKEN=lsio'
CI_AUTH='user:password'
CI_DOCKERENV='CONNECTION_TOKEN=lsio'
CI_AUTH=''
CI_WEBPATH='/?tkn=lsio'
}
stages {

View File

@ -302,6 +302,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
## Versions
* **18.06.24:** - Rebase to noble.
* **01.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
* **29.09.22:** - Rebase to jammy, switch to s6v3. Fix chown logic to skip `/config/workspace` contents.
* **12.02.22:** - Update `install-extension` helper to compensate for upstream changes.

View File

@ -22,6 +22,6 @@ repo_vars:
- CI_PORT='3000'
- CI_SSL='false'
- CI_DELAY='120'
- CI_DOCKERENV='TZ=US/Pacific|CONNECTION_TOKEN=lsio'
- CI_AUTH='user:password'
- CI_DOCKERENV='CONNECTION_TOKEN=lsio'
- CI_AUTH=''
- CI_WEBPATH='/?tkn=lsio'

View File

@ -52,6 +52,7 @@ app_setup_block: |
When reverse proxied through SWAG, custom services running on specific ports inside openvscode-server can be accessed at `https://PORT.openvscode-server.domain.com` very much like how code-server's port proxy function is handled. For that, a wildcard CNAME `*.openvscode-server.domain.com` needs to be created and the SWAG cert needs to cover those subdomains.
# changelog
changelogs:
- {date: "18.06.24:", desc: "Rebase to noble."}
- {date: "01.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
- {date: "29.09.22:", desc: "Rebase to jammy, switch to s6v3. Fix chown logic to skip `/config/workspace` contents."}
- {date: "12.02.22:", desc: "Update `install-extension` helper to compensate for upstream changes."}