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

10 lines
134 B
Plaintext
Raw Normal View History

2019-05-04 09:45:53 +02:00
FROM ubuntu:latest
# curl
RUN apt-get update \
&& apt-get install -y curl rsync \
2019-05-04 09:45:53 +02:00
&& rm -rf /var/lib/apt/lists/*
CMD ["/bin/bash"]