nushell/docker/packaging
Jonathan Turner 6951fb440c
Remove it expansion (#2701)
* Remove it-expansion, take 2

* Cleanup

* silly update to test CI
2020-10-26 19:55:52 +13:00
..
Dockerfile.ubuntu-bionic Remove it expansion (#2701) 2020-10-26 19:55:52 +13:00
README.md First pass at updating all documentation formatting and cleaning up output of examples (#2031) 2020-06-24 06:21:47 +12:00

Packaging

This directory contains docker images used for creating packages for different distribution.

How to use this docker files

Start with:

docker build -f docker/packaging/Dockerfile.ubuntu-bionic -t nushell/package:ubuntu-bionic .

after building the image please run container:

docker run -td --rm --name nushell_package_ubuntu_bionic nushell/package:ubuntu-bionic

and copy deb package from inside:

docker cp nushell_package_ubuntu_bionic:/nu_0.2.0-1_amd64.deb .

or shell inside, and test install:

docker exec -it nushell_package_ubuntu_bionic bash
dpkg -i /nu_0.2.0-1_amd64.deb

(Reading database ... 25656 files and directories currently installed.)
Preparing to unpack /nu_0.2.0-1_amd64.deb ...
Unpacking nu (0.2.0-1) over (0.2.0-1) ...
Setting up nu (0.2.0-1) ...

When you are finished, exit and stop the container. It will be removed since we used --rm.

docker stop nushell_package_ubuntu_bionic

What should be done