it's working?

This commit is contained in:
2026-02-17 16:19:15 -06:00
parent 2749d5d773
commit 77cf18c02f
3 changed files with 59 additions and 0 deletions

View File

@@ -123,6 +123,10 @@ CMD ["/usr/local/bin/attune-sensor"]
# ============================================================================
FROM debian:${DEBIAN_VERSION}-slim AS sensor-full
# Re-declare global ARG so it's available in RUN commands within this stage
# (global ARGs are only automatically available in FROM instructions)
ARG NODE_VERSION=20
RUN apt-get update && apt-get install -y \
ca-certificates \
libssl3 \

View File

@@ -181,6 +181,8 @@ CMD ["/usr/local/bin/attune-worker"]
# ============================================================================
FROM debian:${DEBIAN_VERSION}-slim AS worker-node
ARG NODE_VERSION=20
RUN apt-get update && apt-get install -y \
ca-certificates \
libssl3 \
@@ -220,6 +222,8 @@ CMD ["/usr/local/bin/attune-worker"]
# ============================================================================
FROM debian:${DEBIAN_VERSION} AS worker-full
ARG NODE_VERSION=20
RUN apt-get update && apt-get install -y \
ca-certificates \
libssl3 \