mirror of
https://github.com/kasmtech/workspaces-images.git
synced 2024-11-07 08:44:07 +01:00
enable remnux and install their packages to the best of our abilities
This commit is contained in:
parent
bffc94fee0
commit
037ed37dac
@ -88,6 +88,7 @@ before_script:
|
||||
- "only-office|core-ubuntu-focal|dockerfile-kasm-only-office"
|
||||
- "oracle-7-desktop|core-oracle-7|dockerfile-kasm-oracle-7-desktop"
|
||||
- "postman|core-ubuntu-focal|dockerfile-kasm-postman"
|
||||
- "remnux-focal-desktop|core-ubuntu-focal|dockerfile-kasm-remnux-focal-desktop"
|
||||
- "signal|core-ubuntu-focal|dockerfile-kasm-signal"
|
||||
- "steam|core-ubuntu-focal|dockerfile-kasm-steam"
|
||||
- "tracelabs|core-kali-rolling|dockerfile-kasm-tracelabs"
|
||||
|
@ -1,5 +1,5 @@
|
||||
ARG BASE_TAG="develop"
|
||||
ARG BASE_IMAGE="core-remnux-focal"
|
||||
ARG BASE_IMAGE="core-ubuntu-focal"
|
||||
FROM kasmweb/$BASE_IMAGE:$BASE_TAG
|
||||
USER root
|
||||
|
||||
@ -10,6 +10,9 @@ WORKDIR $HOME
|
||||
|
||||
######### Customize Container Here ###########
|
||||
|
||||
# Add Background
|
||||
ADD /src/common/resources/images/bg_remnux.png /usr/share/extra/backgrounds/bg_default.png
|
||||
|
||||
# Install Remnux Utils
|
||||
COPY ./src/ubuntu/install/remnux $INST_SCRIPTS/remnux/
|
||||
RUN bash $INST_SCRIPTS/remnux/install_remnux.sh && rm -rf $INST_SCRIPTS/remnux/
|
||||
|
BIN
src/common/resources/images/bg_remnux.png
Normal file
BIN
src/common/resources/images/bg_remnux.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 21 KiB |
@ -1,5 +1,13 @@
|
||||
#!/bin/bash
|
||||
set -ex
|
||||
set -x
|
||||
|
||||
|
||||
# Install Salt
|
||||
wget -nv -O - https://repo.saltproject.io/py3/ubuntu/20.04/amd64/latest/salt-archive-keyring.gpg | apt-key add -
|
||||
echo deb [arch=amd64] https://repo.saltproject.io/py3/ubuntu/20.04/amd64/3004 focal main > /etc/apt/sources.list.d/saltstack.list
|
||||
apt-get update
|
||||
apt-get install -y salt-common
|
||||
git clone https://github.com/REMnux/salt-states.git /srv/salt
|
||||
|
||||
# Install remnux tools
|
||||
export HOME=/root
|
||||
|
Loading…
Reference in New Issue
Block a user