0
0
mirror of https://github.com/tj/n.git synced 2024-11-22 02:57:32 +01:00
n/test/dockerfiles/Dockerfile-ubuntu-wget

10 lines
128 B
Plaintext
Raw Permalink Normal View History

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