0
0
mirror of https://github.com/tj/n.git synced 2024-11-22 11:37:26 +01:00
n/test/dockerfiles/Dockerfile-ubuntu-curl
John Gee 6b82f30793
Detect download failure (#635)
* Detect download failure

* Add rsync to containers for --preserve tests
2020-11-25 21:12:07 +13:00

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"]