mirror of
https://github.com/tj/n.git
synced 2024-11-22 19:57:54 +01:00
10 lines
128 B
Plaintext
10 lines
128 B
Plaintext
FROM ubuntu:latest
|
|
|
|
# curl
|
|
|
|
RUN apt-get update \
|
|
&& apt-get install -y curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
CMD ["/bin/bash"]
|