5 lines
111 B
Docker
5 lines
111 B
Docker
FROM ubuntu
|
|
|
|
RUN apt-get -y update && \
|
|
apt-get install -y curl jq bash git zsh docker
|
|
CMD [ "zsh" ]
|