mirror of
https://github.com/SoftFever/OrcaSlicer.git
synced 2025-08-08 06:24:01 -06:00
Add Devcontainer Support (#3777)
* add devcontainer files * update postCreate * add chmod for postCreate * set CORES env variable to pass to build tool * remove ssh functionality * Move delete env file cmd to postStartCommand * update how env file is done * Update - Move to older version of ubuntu for compatability - Change vnc password to orca
This commit is contained in:
parent
da7f8e85fd
commit
fba490969d
2 changed files with 65 additions and 0 deletions
14
.devcontainer/postCreate.sh
Executable file
14
.devcontainer/postCreate.sh
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/bin/bash
|
||||
# Update and upgrade all system packages
|
||||
apt update
|
||||
apt upgrade -y
|
||||
|
||||
echo "-----------------------------------------"
|
||||
echo "Running BuildLinux.sh with update flag..."
|
||||
echo "-----------------------------------------"
|
||||
./BuildLinux.sh -u
|
||||
|
||||
echo "------------------------------"
|
||||
echo "Installing missing packages..."
|
||||
echo "------------------------------"
|
||||
apt install -y libgl1-mesa-dev m4 autoconf libtool
|
Loading…
Add table
Add a link
Reference in a new issue