Skip to content

Commit a07c0d4

Browse files
committed
fix
1 parent 0a72ab1 commit a07c0d4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@ RUN apt-get update \
5555

5656
FROM deps-node-yarn AS deps-docker-compose
5757
RUN apt-get update \
58-
&& apt-get install docker-compose-plugin \
59-
&& apt-get clean \
60-
&& rm -rf /var/lib/apt/lists/*
58+
&& curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose \
59+
&& chmod +x /usr/local/bin/docker-compose \
60+
&& apt-get clean && rm -rf /var/lib/apt/lists/*
6161

6262
FROM deps-docker-compose AS final
6363
COPY ./github-runner-entrypoint.sh ./entrypoint.sh

0 commit comments

Comments
 (0)