enable remnux and install their packages to the best of our abilities

This commit is contained in:
Ryan Kuba 2023-08-16 12:01:44 +00:00 committed by Justin Travis
parent bffc94fee0
commit 037ed37dac
4 changed files with 14 additions and 2 deletions

View File

@ -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"

View File

@ -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/

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

View File

@ -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