We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
libatomic1
1 parent 43a988f commit a40dcb1Copy full SHA for a40dcb1
1 file changed
Dockerfile
@@ -4,6 +4,11 @@ ARG NODE_VERSION=22.20.0
4
FROM ghcr.io/containerbase/base:13.23.6@sha256:af7c74e000727bfc7641235ddfaabd606270e7e97cd68de95dd1422b8fc8cf00
5
6
ARG NODE_VERSION
7
+
8
+RUN set -ex; \
9
+ if dpkg --compare-versions "${NODE_VERSION}" lt 25.0.0; then; install-apt libatomic1; fi; \
10
+ true
11
12
RUN install-tool node
13
14
LABEL org.opencontainers.image.source="https://github.com/containerbase/node" \
0 commit comments