mirror of
https://github.com/docker/cli.git
synced 2026-01-13 18:22:35 +03:00
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
|