Signed-off-by: Jean-Pierre Huynh <jean-pierre.huynh@ounet.fr>
Upstream-commit: ffe8509663
Component: cli
10 lines
161 B
Docker
10 lines
161 B
Docker
FROM debian:stretch-slim
|
|
|
|
RUN apt-get update && \
|
|
apt-get -y install make shellcheck && \
|
|
apt-get clean
|
|
|
|
WORKDIR /go/src/github.com/docker/cli
|
|
|
|
CMD bash
|