mirror of
https://github.com/tmaier/docker-compose
synced 2024-11-26 13:53:45 +01:00
9 lines
234 B
Docker
9 lines
234 B
Docker
ARG DOCKER_VERSION=latest
|
|
FROM docker:${DOCKER_VERSION}
|
|
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}"
|