mirror of
https://github.com/tj/n.git
synced 2024-11-22 11:37:26 +01:00
6b82f30793
* Detect download failure * Add rsync to containers for --preserve tests
10 lines
134 B
Plaintext
10 lines
134 B
Plaintext
FROM ubuntu:latest
|
|
|
|
# curl
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y curl rsync \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
CMD ["/bin/bash"]
|