Last active
April 3, 2024 04:18
-
-
Save vajonam/d1e713bcfd47e03f27549258ef53690e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ARG UBUNTU_VERSION=22.04 | |
FROM nvidia/opengl:1.2-glvnd-runtime-ubuntu${UBUNTU_VERSION} | |
LABEL authors="Joshua J. Damanik" | |
ARG VIRTUALGL_VERSION=3.1 | |
ARG TURBOVNC_VERSION=3.1 | |
ENV DEBIAN_FRONTEND noninteractive | |
# Install some basic dependencies | |
RUN apt-get update && apt-get install -y --no-install-recommends \ | |
wget \ | |
xorg \ | |
xauth \ | |
gosu supervisor x11-xserver-utils \ | |
libegl1-mesa \ | |
libgl1-mesa-glx \ | |
openbox \ | |
locales-all \ | |
xterm \ | |
novnc \ | |
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 locales-all pcmanfm jq curl git bzip2 firefox \ | |
&& rm -rf /var/lib/apt/lists/* | |
# Install virtualgl and turbovnc | |
RUN wget -qO /tmp/virtualgl_${VIRTUALGL_VERSION}_amd64.deb https://sourceforge.net/projects/virtualgl/files/${VIRTUALGL_VERSION}/virtualgl_${VIRTUALGL_VERSION}_amd64.deb/download \ | |
&& wget -qO /tmp/turbovnc_${TURBOVNC_VERSION}_amd64.deb https://sourceforge.net/projects/turbovnc/files/${TURBOVNC_VERSION}/turbovnc_${TURBOVNC_VERSION}_amd64.deb/download \ | |
&& dpkg -i /tmp/virtualgl_${VIRTUALGL_VERSION}_amd64.deb \ | |
&& dpkg -i /tmp/turbovnc_${TURBOVNC_VERSION}_amd64.deb \ | |
&& rm -rf /tmp/*.deb | |
# Install prusaslicer | |
WORKDIR /slic3r | |
ADD get_latest_prusaslicer_release.sh /slic3r | |
RUN chmod +x /slic3r/get_latest_prusaslicer_release.sh \ | |
&& latestSlic3r=$(/slic3r/get_latest_prusaslicer_release.sh url) \ | |
&& slic3rReleaseName=$(/slic3r/get_latest_prusaslicer_release.sh name) \ | |
&& curl -sSL ${latestSlic3r} > ${slic3rReleaseName} \ | |
&& rm -f /slic3r/releaseInfo.json \ | |
&& mkdir -p /slic3r/slic3r-dist \ | |
&& tar -xjf ${slic3rReleaseName} -C /slic3r/slic3r-dist --strip-components 1 \ | |
&& rm -f /slic3r/${slic3rReleaseName} \ | |
&& rm -rf /var/lib/apt/lists/* \ | |
&& apt-get autoclean \ | |
&& groupadd slic3r \ | |
&& useradd -g slic3r --create-home --home-dir /home/slic3r slic3r \ | |
&& mkdir -p /slic3r \ | |
&& mkdir -p /configs \ | |
&& mkdir -p /prints/ \ | |
&& chown -R slic3r:slic3r /slic3r/ /home/slic3r/ /prints/ /configs/ \ | |
&& locale-gen en_US \ | |
&& mkdir /configs/.local \ | |
&& mkdir -p /configs/.config/ \ | |
&& ln -s /configs/.config/ /home/slic3r/ \ | |
&& mkdir -p /home/slic3r/.config/ \ | |
# We can now set the Download directory for Firefox and other browsers. | |
# We can also add /prints/ to the file explorer bookmarks for easy access. | |
&& echo "XDG_DOWNLOAD_DIR=\"/prints/\"" >> /home/slic3r/.config/user-dirs.dirs \ | |
&& echo "file:///prints prints" >> /home/slic3r/.gtk-bookmarks | |
# Generate key for novnc | |
RUN openssl req -x509 -nodes -newkey rsa:2048 -keyout /etc/novnc.pem -out /etc/novnc.pem -days 365 -subj "/C=US/ST=Denial/L=Springfield/O=Dis/CN=localhost" | |
ENV PATH ${PATH}:/opt/VirtualGL/bin:/opt/TurboVNC/bin | |
COPY entrypoint.sh /entrypoint.sh | |
COPY menu.xml /etc/xdg/openbox/ | |
COPY supervisord.conf /etc/ | |
# HTTP Port | |
EXPOSE 8080 | |
# VNC Port | |
EXPOSE 5900 | |
VOLUME /configs/ | |
VOLUME /prints/ | |
ENTRYPOINT ["/entrypoint.sh"] | |
CMD ["bash", "-c", "chown -R slic3r:slic3r /home/slic3r/ /configs/ /prints/ /dev/stdout && exec gosu slic3r supervisord"] | |
# CMD ["/bin/bash"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment