mirror of
https://github.com/helfrichmichael/prusaslicer-novnc.git
synced 2024-08-30 18:32:27 +00:00
* Simplified the Dockerfile further.
* Converted the shell files to LF so that they can run properly between computers. * Added pcmanfm as a File Explorer to the OpenBox menu.
This commit is contained in:
parent
2cf1f69237
commit
00262b835d
@ -19,7 +19,7 @@ RUN apt-get update -y && \
|
|||||||
|
|
||||||
RUN apt update && apt install -y --no-install-recommends --allow-unauthenticated \
|
RUN apt update && apt install -y --no-install-recommends --allow-unauthenticated \
|
||||||
lxde gtk2-engines-murrine gnome-themes-standard gtk2-engines-pixbuf gtk2-engines-murrine arc-theme \
|
lxde gtk2-engines-murrine gnome-themes-standard gtk2-engines-pixbuf gtk2-engines-murrine arc-theme \
|
||||||
freeglut3 libgtk2.0-dev libwxgtk3.0-gtk3-dev libwx-perl libxmu-dev libgl1-mesa-glx libgl1-mesa-dri xdg-utils locales \
|
freeglut3 libgtk2.0-dev libwxgtk3.0-gtk3-dev libwx-perl libxmu-dev libgl1-mesa-glx libgl1-mesa-dri xdg-utils locales pcmanfm \
|
||||||
&& apt autoclean -y \
|
&& apt autoclean -y \
|
||||||
&& apt autoremove -y \
|
&& apt autoremove -y \
|
||||||
&& rm -rf /var/lib/apt/lists/*
|
&& rm -rf /var/lib/apt/lists/*
|
||||||
@ -40,9 +40,6 @@ ADD get_latest_prusaslicer_release.sh /slic3r
|
|||||||
RUN apt-get update && apt-get install -y \
|
RUN apt-get update && apt-get install -y \
|
||||||
jq \
|
jq \
|
||||||
curl \
|
curl \
|
||||||
ca-certificates \
|
|
||||||
unzip \
|
|
||||||
bzip2 \
|
|
||||||
git \
|
git \
|
||||||
--no-install-recommends \
|
--no-install-recommends \
|
||||||
&& chmod +x /slic3r/get_latest_prusaslicer_release.sh \
|
&& chmod +x /slic3r/get_latest_prusaslicer_release.sh \
|
||||||
@ -54,7 +51,6 @@ RUN apt-get update && apt-get install -y \
|
|||||||
&& tar -xjf ${slic3rReleaseName} -C /slic3r/slic3r-dist --strip-components 1 \
|
&& tar -xjf ${slic3rReleaseName} -C /slic3r/slic3r-dist --strip-components 1 \
|
||||||
&& rm -f /slic3r/${slic3rReleaseName} \
|
&& rm -f /slic3r/${slic3rReleaseName} \
|
||||||
&& rm -rf /var/lib/apt/lists/* \
|
&& rm -rf /var/lib/apt/lists/* \
|
||||||
&& apt-get purge -y --auto-remove jq unzip bzip2 \
|
|
||||||
&& apt-get autoclean \
|
&& apt-get autoclean \
|
||||||
&& groupadd slic3r \
|
&& groupadd slic3r \
|
||||||
&& useradd -g slic3r --create-home --home-dir /home/slic3r slic3r \
|
&& useradd -g slic3r --create-home --home-dir /home/slic3r slic3r \
|
||||||
|
5
menu.xml
5
menu.xml
@ -11,6 +11,11 @@
|
|||||||
<execute>/usr/bin/x-terminal-emulator</execute>
|
<execute>/usr/bin/x-terminal-emulator</execute>
|
||||||
</action>
|
</action>
|
||||||
</item>
|
</item>
|
||||||
|
<item label="File Explorer">
|
||||||
|
<action name="Execute">
|
||||||
|
<execute>/usr/bin/pcmanfm</execute>
|
||||||
|
</action>
|
||||||
|
</item>
|
||||||
<item label="Htop">
|
<item label="Htop">
|
||||||
<action name="Execute">
|
<action name="Execute">
|
||||||
<execute>/usr/bin/x-terminal-emulator -e htop</execute>
|
<execute>/usr/bin/x-terminal-emulator -e htop</execute>
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
# tagLatestPrusaSlicer.sh
|
|
||||||
# Push a tag for our repository if upstream PrusaSlicer generates a new release
|
# Push a tag for our repository if upstream PrusaSlicer generates a new release
|
||||||
# This was forked from https://github.com/dmagyar/prusaslicer-vnc-docker/blob/main/tagLatestPrusaSlicer.sh
|
# This was forked from https://github.com/dmagyar/prusaslicer-vnc-docker/blob/main/tagLatestPrusaSlicer.sh
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user