mirror of
https://github.com/nushell/nushell.git
synced 2024-11-25 09:53:43 +01:00
c9c9112155
* Add Package.Dockerfile as flexible build source * Add docker-compose.package.yml as intermediary config * CI will use new github action YAML format it only publish the docker image on git tag * Add debian:latest, debian:slim, and alpine as base image * Add documentation
5 lines
70 B
Docker
5 lines
70 B
Docker
ARG base
|
|
FROM ${base}
|
|
|
|
COPY target/release/nu* /bin/
|
|
ENTRYPOINT ["nu"] |