You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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