mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 00:13:21 +01:00
24ba0d93c7
Signed-off-by: Vanessa Sochat <vsochat@stanford.edu>
7 lines
178 B
Docker
7 lines
178 B
Docker
ARG FROMTAG=latest
|
|
FROM quay.io/nushell/nu-base:${FROMTAG} as base
|
|
FROM rust:1.37-slim
|
|
COPY --from=base /usr/local/bin/nu /usr/local/bin/nu
|
|
ENTRYPOINT ["nu"]
|
|
CMD ["-l", "info"]
|