mirror of
https://github.com/tmaier/docker-compose
synced 2024-11-22 16:01:59 +01:00
f007d880b0
See https://docs.docker.com/engine/reference/builder/#understand-how-arg-and-from-interact
8 lines
197 B
Docker
8 lines
197 B
Docker
FROM docker:latest
|
|
MAINTAINER Tobias Maier <tobias.maier@baucloud.com>
|
|
|
|
ARG COMPOSE_VERSION=
|
|
|
|
RUN apk add --no-cache py-pip
|
|
RUN pip install "docker-compose${COMPOSE_VERSION:+==}${COMPOSE_VERSION}"
|