Skip to content

Commit 64b1419

Browse files
ci: revert ARG COMPOSE_VERSION (#21)
* ci: revert `ARG COMPOSE_VERSION` * ci: delete comment * ci: return comment * ci: fix variable expansion
1 parent a28a1e9 commit 64b1419

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

Dockerfile

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# CI relies on this ARG. Don't remove or rename it
2+
ARG COMPOSE_VERSION=v2.40.3
3+
FROM docker/compose-bin:${COMPOSE_VERSION} AS compose
4+
15
FROM debian:trixie-20251208-slim AS compose-plugin
26
WORKDIR /home/compose
37
RUN groupadd --gid 3000 compose \
@@ -6,7 +10,7 @@ RUN groupadd --gid 3000 compose \
610
--home /home/compose \
711
--shell /bin/bash \
812
compose
9-
COPY --from=docker/compose-bin:v2.40.3 --chown=compose:compose /docker-compose /usr/local/bin/docker-compose
13+
COPY --from=compose --chown=compose:compose /docker-compose /usr/local/bin/docker-compose
1014

1115
ENV COMPOSE_COMPATIBILITY=true
1216
USER compose:compose

service.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
version: 1.5.7
1+
version: 1.5.8

0 commit comments

Comments
 (0)