We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0a72ab1 commit a07c0d4Copy full SHA for a07c0d4
Dockerfile
@@ -55,9 +55,9 @@ RUN apt-get update \
55
56
FROM deps-node-yarn AS deps-docker-compose
57
RUN apt-get update \
58
- && apt-get install docker-compose-plugin \
59
- && apt-get clean \
60
- && rm -rf /var/lib/apt/lists/*
+ && curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose \
+ && chmod +x /usr/local/bin/docker-compose \
+ && apt-get clean && rm -rf /var/lib/apt/lists/*
61
62
FROM deps-docker-compose AS final
63
COPY ./github-runner-entrypoint.sh ./entrypoint.sh
0 commit comments