2018-04-29 05:22:04 +02:00
|
|
|
ARG DOCKER_VERSION=latest
|
|
|
|
FROM docker:${DOCKER_VERSION}
|
2017-01-04 01:09:06 +01:00
|
|
|
|
2018-04-29 05:17:40 +02:00
|
|
|
ARG COMPOSE_VERSION=
|
2018-04-29 06:14:03 +02:00
|
|
|
ARG DOCKER_VERSION
|
2018-04-29 05:17:40 +02:00
|
|
|
|
2022-11-01 14:24:21 +01:00
|
|
|
ENV PATH /usr/bin:$PATH
|
|
|
|
|
2020-04-11 13:45:23 +02:00
|
|
|
RUN apk add --no-cache py3-pip python3
|
2021-04-15 13:56:00 +02:00
|
|
|
RUN apk add --no-cache --virtual \
|
|
|
|
build-dependencies \
|
|
|
|
cargo \
|
|
|
|
gcc \
|
|
|
|
libc-dev \
|
|
|
|
libffi-dev \
|
|
|
|
make \
|
|
|
|
openssl-dev \
|
|
|
|
python3-dev \
|
|
|
|
rust \
|
2020-04-10 22:36:23 +02:00
|
|
|
&& pip3 install "docker-compose${COMPOSE_VERSION:+==}${COMPOSE_VERSION}" \
|
|
|
|
&& apk del build-dependencies
|
2018-04-29 06:06:00 +02:00
|
|
|
|
|
|
|
LABEL \
|
|
|
|
org.opencontainers.image.authors="Tobias Maier <tobias.maier@baucloud.com>" \
|
|
|
|
org.opencontainers.image.description="This docker image installs docker-compose on top of the docker image." \
|
|
|
|
org.opencontainers.image.licenses="MIT" \
|
|
|
|
org.opencontainers.image.source="https://github.com/tmaier/docker-compose" \
|
|
|
|
org.opencontainers.image.title="Docker Compose on docker base image" \
|
2018-04-29 06:14:03 +02:00
|
|
|
org.opencontainers.image.vendor="BauCloud GmbH" \
|
|
|
|
org.opencontainers.image.version="${DOCKER_VERSION} with docker-compose ${COMPOSE_VERSION}"
|