Skip to content
Tim Burks edited this page Oct 17, 2020 · 1 revision
## To build a nu container:
# docker build --tag nu:latest .

## To run a nu container:
# docker run -i -t nu:latest . /bin/bash

FROM ubuntu:18.04

RUN apt-get update && \
    apt-get install -y git make sudo && \
    apt-get clean

RUN git clone https://github.com/programming-nu/nu
WORKDIR /nu
RUN ./ubuntu.sh 
RUN make
RUN ./mininush tools/nuke install
Clone this wiki locally