You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
KasmVNC/builder
Kasm 0b6334369c
Merge pull request #36 from kasmtech/upstreamsync_sans_novnc
Upstream Syncs
4 years ago
..
startup Deb: make easy-start script easier to modify 4 years ago
README.md Update README.md 4 years ago
build-and-test-deb Move build-and-test-* to builder/ 4 years ago
build-and-test-rpm Move build-and-test-* to builder/ 4 years ago
build-deb Deb: release numbers (18.04) -> codenames (bionic) 4 years ago
build-deb-inside-docker Merge branch 'master' into create_ubuntu20_package 4 years ago
build-package CI: build all distros and upload to S3 4 years ago
build-rpm Rpm: automate rpm building with build-rpm 4 years ago
build-rpm-inside-docker Rpm: run rpmlint after building rpm 4 years ago
build-tarball build-tarball: only rebuild www if it was changed 4 years ago
build.sh Apply patch for 1.20.x 4 years ago
build_and_deploy_kasm.sh Initial commit 5 years ago
build_www.sh fixes 4 years ago
dockerfile.centos_core.barebones.rpm.test Deb/rpm: update barebones images 4 years ago
dockerfile.centos_core.build Rpm: CentOS dfart. Rpm building isn't automated yet. 4 years ago
dockerfile.centos_core.rpm.build Rpm: run rpmlint after building rpm 4 years ago
dockerfile.centos_core.rpm.test Rpm: group kasmvnc -> kasmvnc-cert 4 years ago
dockerfile.debian_bullseye.build Deb: add Bullseye support 4 years ago
dockerfile.debian_bullseye.deb.build Deb: fix build dependencies install 4 years ago
dockerfile.debian_bullseye.deb.test Deb: test images have lsb-release now 4 years ago
dockerfile.debian_buster.barebones.deb.test Code formatting 4 years ago
dockerfile.debian_buster.build Deb: release numbers (18.04) -> codenames (bionic) 4 years ago
dockerfile.debian_buster.deb.build Deb: fix build dependencies install 4 years ago
dockerfile.debian_buster.deb.test Deb: test images have lsb-release now 4 years ago
dockerfile.fedora_thirtythree.barebones.rpm.test Deb/rpm: update barebones images 4 years ago
dockerfile.fedora_thirtythree.build tarball: include Xvnc.1 man page 4 years ago
dockerfile.fedora_thirtythree.rpm.build tarball: include Xvnc.1 man page 4 years ago
dockerfile.fedora_thirtythree.rpm.test Rpm: group kasmvnc -> kasmvnc-cert 4 years ago
dockerfile.kali_kali-rolling.build Deb: add Kali kali-rolling support 4 years ago
dockerfile.kali_kali-rolling.deb.build Deb: fix build dependencies install 4 years ago
dockerfile.kali_kali-rolling.deb.test Deb: test images have lsb-release now 4 years ago
dockerfile.ubuntu1604.build Added build docker images for debian and others 4 years ago
dockerfile.ubuntu_bionic.build Apply patch for 1.20.x 4 years ago
dockerfile.ubuntu_bionic.deb.build Deb: fix build dependencies install 4 years ago
dockerfile.ubuntu_bionic.deb.test Deb: test images have lsb-release now 4 years ago
dockerfile.ubuntu_bionic.test Deb: release numbers (18.04) -> codenames (bionic) 4 years ago
dockerfile.ubuntu_focal.barebones.deb.test Deb/rpm: update barebones images 4 years ago
dockerfile.ubuntu_focal.build Deb: release numbers (18.04) -> codenames (bionic) 4 years ago
dockerfile.ubuntu_focal.deb.build Deb: fix build dependencies install 4 years ago
dockerfile.ubuntu_focal.deb.test Deb: fix Ubuntu Focal (vnc_startup.sh XFCE start issue) 4 years ago
dockerfile.ubuntu_focal.test Deb: release numbers (18.04) -> codenames (bionic) 4 years ago
dockerfile.www.build added dockerfile build process for www 4 years ago
os_ver_cli.sh Deb: release numbers (18.04) -> codenames (bionic) 4 years ago
test-deb Add verbose logging via KASMVNC_VERBOSE_LOGGING env var 4 years ago
test-deb-barebones Deb: update Debian Buster barebones test to work 4 years ago
test-rpm Add verbose logging via KASMVNC_VERBOSE_LOGGING env var 4 years ago
test-rpm-barebones Deb/rpm: change test user password to "foobar" 4 years ago

README.md

REQIUREMENTS

Docker CE

Build a deb/rpm package

# builder/build-package <os> <os_codename>
# os_codename is what "lsb_release -c" outputs, e.g. buster, focal.
# Packages will be placed under builder/build/

builder/build-package ubuntu bionic
builder/build-package ubuntu focal
builder/build-package debian buster
builder/build-package debian bullseye
builder/build-package kali kali-rolling
builder/build-package centos core # CentOS 7
builder/build-package fedora thirtythree

Build and test a package

builder/build-and-test-deb ubuntu focal
builder/build-and-test-rpm centos core

Open browser and point to https://localhost:443/ or https://<ip-address>:443/

3 default users are created:

  • 'foo' with default password 'foobar'. It can use mouse and keyboard.
  • 'foo-ro' with default password 'foobar'. It can only view.
  • 'foo-owner' with default password 'foobar'. It can manage other users.

Test a package

If you want to test deb/rpm package you've already built, please use this:

builder/test-deb ubuntu focal

It will install the package inside a new container and run KasmVNC.

Open browser and point to https://localhost:443/ or https://<ip-address>:443/

Package development

deb/rpm package building and testing

First, a tarball is built, and then its files are copied to deb/rpm package as it is being built. Package testing stage installs the deb/rpm package in a fresh docker container and runs KasmVNC.

builder/build-tarball debian buster
builder/build-deb debian buster
builder/test-deb debian buster

Use build-and-test-deb to perform the whole dev lifecycle, but to iterate quickly, you'll need to skip building the tarball (which takes a long time), and just build your deb/rpm with build-deb and test with test-deb.

build-rpm and test-rpm are also available.

Ensuring packages have all dependencies they need.

If you're working on a deb/rpm package, testing that it has all the necessary dependencies is done via testing in a barebones environment (read: no XFCE). In this way we can be sure that runtime dependencies aren't met accidentally by packages installed with XFCE.

builder/test-deb-barebones ubuntu focal