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
2 changes: 1 addition & 1 deletion .github/workflows/external_trigger.yml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ jobs:
exit 0
else
assets=$(curl -u "${{ secrets.CR_USER }}:${{ secrets.CR_PAT }}" -sX GET "https://api.github.com/repos/bambulab/BambuStudio/releases/tags/${EXT_RELEASE}" | jq -r '.assets[].browser_download_url')
if grep -q "Bambu_Studio_linux_fedora" <<< "${assets}"; then
if grep -q "Bambu_Studio_linux_ubuntu-24.04" <<< "${assets}"; then
artifacts_found="true"
else
artifacts_found="false"
Expand Down
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1

FROM ghcr.io/linuxserver/baseimage-selkies:debianbookworm
FROM ghcr.io/linuxserver/baseimage-selkies:ubuntunoble

# set version label
ARG BUILD_DATE
Expand All @@ -19,10 +19,11 @@ RUN \
/usr/share/selkies/www/icon.png \
https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/bambustudio-logo.png && \
echo "**** install packages ****" && \
add-apt-repository ppa:xtradeb/apps && \
apt-get update && \
DEBIAN_FRONTEND=noninteractive \
apt-get install --no-install-recommends -y \
firefox-esr \
firefox \
fonts-dejavu \
fonts-dejavu-extra \
gir1.2-gst-plugins-bad-1.0 \
Expand All @@ -31,15 +32,15 @@ RUN \
gstreamer1.0-plugins-* \
gstreamer1.0-pulseaudio \
libosmesa6 \
libwebkit2gtk-4.0-37 \
libwebkit2gtk-4.1-0 \
libwx-perl && \
echo "**** install bambu studio from appimage ****" && \
if [ -z ${BAMBUSTUDIO_VERSION+x} ]; then \
BAMBUSTUDIO_VERSION=$(curl -sX GET "https://api.github.com/repos/bambulab/BambuStudio/releases/latest" \
| awk '/tag_name/{print $4;exit}' FS='[""]'); \
fi && \
RELEASE_URL=$(curl -sX GET "https://api.github.com/repos/bambulab/BambuStudio/releases/latest" | awk '/url/{print $4;exit}' FS='[""]') && \
DOWNLOAD_URL=$(curl -sX GET "${RELEASE_URL}" | awk '/browser_download_url.*fedora/{print $4;exit}' FS='[""]') && \
DOWNLOAD_URL=$(curl -sX GET "${RELEASE_URL}" | awk '/browser_download_url.*24.04/{print $4;exit}' FS='[""]') && \
cd /tmp && \
curl -o \
/tmp/bambu.app -L \
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -428,6 +428,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64

## Versions

* **14.08.25:** - Rebase to Ubuntu Noble to ingest approved appimage.
* **12.07.25:** - Rebase to Selkies, HTTPS IS NOW REQUIRED.
* **29.07.24:** - Add required fonts and environment variable for dark mode.
* **10.02.24:** - Update Readme with new env vars.
Expand Down
2 changes: 1 addition & 1 deletion jenkins-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ release_tag: latest
ls_branch: master
external_artifact_check: |
assets=$(curl -u "${{ '{{' }} secrets.CR_USER {{ '}}' }}:${{ '{{' }} secrets.CR_PAT {{ '}}' }}" -sX GET "https://api.github.com/repos/bambulab/BambuStudio/releases/tags/${EXT_RELEASE}" | jq -r '.assets[].browser_download_url')
if grep -q "Bambu_Studio_linux_fedora" <<< "${assets}"; then
if grep -q "Bambu_Studio_linux_ubuntu-24.04" <<< "${assets}"; then
artifacts_found="true"
else
artifacts_found="false"
Expand Down
1 change: 1 addition & 0 deletions readme-vars.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ init_diagram: |
"bambustudio:latest" <- Base Images
# changelog
changelogs:
- {date: "14.08.25:", desc: "Rebase to Ubuntu Noble to ingest approved appimage."}
- {date: "12.07.25:", desc: "Rebase to Selkies, HTTPS IS NOW REQUIRED."}
- {date: "29.07.24:", desc: "Add required fonts and environment variable for dark mode."}
- {date: "10.02.24:", desc: "Update Readme with new env vars."}
Expand Down
2 changes: 1 addition & 1 deletion root/defaults/menu.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<openbox_menu xmlns="http://openbox.org/3.4/menu">
<menu id="root-menu" label="MENU">
<item label="xterm" icon="/usr/share/pixmaps/xterm-color_48x48.xpm"><action name="Execute"><command>/usr/bin/xterm</command></action></item>
<item label="FireFox" icon="/usr/share/icons/hicolor/48x48/apps/firefox-esr.png"><action name="Execute"><command>/usr/bin/firefox</command></action></item>
<item label="FireFox" icon="/usr/share/icons/hicolor/48x48/apps/firefox.png"><action name="Execute"><command>/usr/bin/firefox</command></action></item>
<item label="Bambu Studio" icon="/opt/bambustudio/BambuStudio.png"><action name="Execute"><command>/opt/bambustudio/AppRun</command></action></item>
</menu>
</openbox_menu>