-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add gitignore and remove wget verbose
- Loading branch information
Alejandro Bolullo
committed
Feb 6, 2024
1 parent
1a97ead
commit 9c73a79
Showing
2 changed files
with
4 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
config |
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
FROM ghcr.io/linuxserver/baseimage-kasmvnc:debianbullseye | ||
ENV APPIMAGE_EXTRACT_AND_RUN=1 | ||
RUN apt-get update && apt-get install -y libwebkit2gtk-4.0-37 wget | ||
RUN wget https://github.com/SoftFever/OrcaSlicer/releases/download/v1.9.0/OrcaSlicer_Linux_V1.9.0.AppImage -O /bin/orcaslicer && chmod +x /bin/orcaslicer | ||
COPY /root / | ||
RUN apt-get update && apt-get install --yes libwebkit2gtk-4.0-37 wget | ||
RUN wget --no-verbose https://github.com/SoftFever/OrcaSlicer/releases/download/v1.9.0/OrcaSlicer_Linux_V1.9.0.AppImage -O /bin/orcaslicer && chmod +x /bin/orcaslicer | ||
COPY /root / |