mirror of
https://github.com/kennethreitz/bake.git
synced 2026-06-05 06:46:14 +00:00
12 lines
232 B
Docker
12 lines
232 B
Docker
FROM kennethreitz/bake:core
|
|
|
|
# -- Install latest Bake.
|
|
RUN set -ex && \
|
|
pip3 install bake-cli --upgrade --quiet > /dev/null
|
|
|
|
# -- Really slim down that image.
|
|
RUN set -ex && \
|
|
rm -fr /var/lib/apt/lists
|
|
|
|
ENTRYPOINT [ "red" ]
|