Skip to content

Commit 619496e

Browse files
committed
fix: wrong condition
1 parent ff00d46 commit 619496e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ FROM ghcr.io/containerbase/base:13.23.6@sha256:af7c74e000727bfc7641235ddfaabd606
66
ARG NODE_VERSION
77

88
RUN set -ex; \
9-
if dpkg --compare-versions "${NODE_VERSION}" lt 25.0.0; then install-apt libatomic1; fi; \
9+
if dpkg --compare-versions "${NODE_VERSION}" ge 25.0.0; then install-apt libatomic1; fi; \
1010
true
1111

1212
RUN install-tool node

0 commit comments

Comments
 (0)