mirror of
https://github.com/nushell/nushell.git
synced 2024-11-25 01:43:47 +01:00
Use tags instead container id and add all binaries to debian/install
This commit is contained in:
parent
85a5ed70b1
commit
a96836facb
9
debian/install
vendored
9
debian/install
vendored
@ -1 +1,10 @@
|
|||||||
target/release/nu usr/bin
|
target/release/nu usr/bin
|
||||||
|
target/release/nu_plugin_binaryview usr/bin
|
||||||
|
target/release/nu_plugin_edit usr/bin
|
||||||
|
target/release/nu_plugin_inc usr/bin
|
||||||
|
target/release/nu_plugin_skip usr/bin
|
||||||
|
target/release/nu_plugin_str usr/bin
|
||||||
|
target/release/nu_plugin_sum usr/bin
|
||||||
|
target/release/nu_plugin_sys usr/bin
|
||||||
|
target/release/nu_plugin_textview usr/bin
|
||||||
|
target/release/nu_plugin_tree usr/bin
|
||||||
|
@ -6,15 +6,40 @@ This directory contains docker images used for creating packages for different d
|
|||||||
|
|
||||||
Start with:
|
Start with:
|
||||||
|
|
||||||
`docker build -f docker/packaging/Dockerfile.ubuntu-bionic .`
|
```bash
|
||||||
|
$ docker build -f docker/packaging/Dockerfile.ubuntu-bionic -t nushell/package:ubuntu-bionic .
|
||||||
|
```
|
||||||
|
|
||||||
after building the image please run container
|
after building the image please run container:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ docker run -td --rm --name nushell_package_ubuntu_bionic nushell/package:ubuntu-bionic
|
||||||
|
```
|
||||||
|
|
||||||
`docker run -d --name nushell <image-id>`
|
|
||||||
|
|
||||||
and copy deb package from inside:
|
and copy deb package from inside:
|
||||||
|
|
||||||
`docker cp nushell:/nu_0.2.0-1_amd64.deb .`
|
```bash
|
||||||
|
$ docker cp nushell_package_ubuntu_bionic:/nu_0.2.0-1_amd64.deb .
|
||||||
|
```
|
||||||
|
|
||||||
|
or shell inside, and test install:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ 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`.
|
||||||
|
|
||||||
|
```bash
|
||||||
|
$ docker stop nushell_package_ubuntu_bionic
|
||||||
|
```
|
||||||
|
|
||||||
## What should be done
|
## What should be done
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user