mirror of
https://github.com/luzifer-docker/docker-compose.git
synced 2024-12-20 17:51:16 +00:00
15 lines
304 B
Text
15 lines
304 B
Text
|
FROM python:3.8-alpine
|
||
|
|
||
|
COPY container-build /opt/setup/container-build
|
||
|
COPY requirements.txt /opt/setup/requirements.txt
|
||
|
|
||
|
RUN set -ex \
|
||
|
&& apk --no-cache add \
|
||
|
bash \
|
||
|
&& /opt/setup/container-build \
|
||
|
&& apk --no-cache del \
|
||
|
bash
|
||
|
|
||
|
ENTRYPOINT ["/usr/local/bin/docker-compose"]
|
||
|
CMD ["help"]
|