mirror of
https://github.com/tj/n.git
synced 2024-11-22 11:37:26 +01:00
f1d0dd5a22
* Rework activate to be (much) more explicit. Add archlinux image. Remove need for rsync. * Reword use case without npm
10 lines
128 B
Plaintext
10 lines
128 B
Plaintext
FROM ubuntu:latest
|
|
|
|
# wget
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y wget \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
CMD ["/bin/bash"]
|