Skip to content

Commit 858e66b

Browse files
authored
Merge pull request #30 from linuxserver/insiders-noble
insiders: rebase to noble
2 parents 94d606f + 7356f32 commit 858e66b

File tree

6 files changed

+10
-8
lines changed

6 files changed

+10
-8
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/linuxserver/baseimage-ubuntu:jammy
1+
FROM ghcr.io/linuxserver/baseimage-ubuntu:noble
22

33
# set version label
44
ARG BUILD_DATE
@@ -20,7 +20,6 @@ RUN \
2020
libatomic1 \
2121
nano \
2222
net-tools \
23-
netcat \
2423
sudo && \
2524
echo "**** install openvscode-server ****" && \
2625
if [ -z ${CODE_RELEASE+x} ]; then \
@@ -35,6 +34,7 @@ RUN \
3534
tar xf \
3635
/tmp/openvscode-server.tar.gz -C \
3736
/app/openvscode-server/ --strip-components=1 && \
37+
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
3838
echo "**** clean up ****" && \
3939
apt-get clean && \
4040
rm -rf \

Dockerfile.aarch64

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-jammy
1+
FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-noble
22

33
# set version label
44
ARG BUILD_DATE
@@ -20,7 +20,6 @@ RUN \
2020
libatomic1 \
2121
nano \
2222
net-tools \
23-
netcat \
2423
sudo && \
2524
echo "**** install openvscode-server ****" && \
2625
if [ -z ${CODE_RELEASE+x} ]; then \
@@ -35,6 +34,7 @@ RUN \
3534
tar xf \
3635
/tmp/openvscode-server.tar.gz -C \
3736
/app/openvscode-server/ --strip-components=1 && \
37+
printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \
3838
echo "**** clean up ****" && \
3939
apt-get clean && \
4040
rm -rf \

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ pipeline {
3131
CI_PORT='3000'
3232
CI_SSL='false'
3333
CI_DELAY='120'
34-
CI_DOCKERENV='TZ=US/Pacific|CONNECTION_TOKEN=lsio'
35-
CI_AUTH='user:password'
34+
CI_DOCKERENV='CONNECTION_TOKEN=lsio'
35+
CI_AUTH=''
3636
CI_WEBPATH='/?tkn=lsio'
3737
}
3838
stages {

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -302,6 +302,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64
302302

303303
## Versions
304304

305+
* **18.06.24:** - Rebase to noble.
305306
* **01.07.23:** - Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)
306307
* **29.09.22:** - Rebase to jammy, switch to s6v3. Fix chown logic to skip `/config/workspace` contents.
307308
* **12.02.22:** - Update `install-extension` helper to compensate for upstream changes.

jenkins-vars.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ repo_vars:
2222
- CI_PORT='3000'
2323
- CI_SSL='false'
2424
- CI_DELAY='120'
25-
- CI_DOCKERENV='TZ=US/Pacific|CONNECTION_TOKEN=lsio'
26-
- CI_AUTH='user:password'
25+
- CI_DOCKERENV='CONNECTION_TOKEN=lsio'
26+
- CI_AUTH=''
2727
- CI_WEBPATH='/?tkn=lsio'

readme-vars.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ app_setup_block: |
5252
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.
5353
# changelog
5454
changelogs:
55+
- {date: "18.06.24:", desc: "Rebase to noble."}
5556
- {date: "01.07.23:", desc: "Deprecate armhf. As announced [here](https://www.linuxserver.io/blog/a-farewell-to-arm-hf)"}
5657
- {date: "29.09.22:", desc: "Rebase to jammy, switch to s6v3. Fix chown logic to skip `/config/workspace` contents."}
5758
- {date: "12.02.22:", desc: "Update `install-extension` helper to compensate for upstream changes."}

0 commit comments

Comments
 (0)