We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fbb281 commit 5aa667aCopy full SHA for 5aa667a
1 file changed
Dockerfile
@@ -20,6 +20,11 @@ RUN sudo corepack enable && \
20
# 浏览器二进制由各项目 CI 中 `playwright install chromium` 按版本安装
21
RUN npx -y playwright install-deps chromium
22
23
+# Install MinIO Client (for CI cache)
24
+RUN curl -fsSL https://dl.min.io/client/mc/release/linux-amd64/mc -o mc && \
25
+ chmod a+x mc && \
26
+ sudo mv mc /usr/local/bin/
27
+
28
# Install Docker Buildx and setup builder
29
RUN BUILDX_VERSION=$(curl -s "https://api.github.com/repos/docker/buildx/releases/latest" | jq -r .tag_name) && \
30
curl -L "https://github.com/docker/buildx/releases/download/${BUILDX_VERSION}/buildx-${BUILDX_VERSION}.linux-amd64" -o docker-buildx && \
0 commit comments