mirror of https://github.com/docker/cli.git
10 lines
136 B
Docker
10 lines
136 B
Docker
|
FROM debian:stretch-slim
|
||
|
|
||
|
RUN apt-get update && \
|
||
|
apt-get -y install make shellcheck && \
|
||
|
apt-get clean
|
||
|
|
||
|
WORKDIR /tmp
|
||
|
|
||
|
CMD bash
|