diff --git a/build.assets/Dockerfile-arm b/build.assets/Dockerfile-arm index 24ae7e6715589..b6fcae28bc4b9 100644 --- a/build.assets/Dockerfile-arm +++ b/build.assets/Dockerfile-arm @@ -30,6 +30,7 @@ RUN apt-get -y update && \ gzip \ libc6-dev \ libpam-dev \ + libfido2-1 \ locales \ pkg-config \ sudo \ diff --git a/build.assets/charts/Dockerfile-distroless b/build.assets/charts/Dockerfile-distroless index 3df8ee5f4f56d..fd467924feed7 100644 --- a/build.assets/charts/Dockerfile-distroless +++ b/build.assets/charts/Dockerfile-distroless @@ -3,7 +3,7 @@ ARG BASE_IMAGE=gcr.io/distroless/cc-debian12 FROM debian:12 AS staging RUN apt-get update COPY fetch-debs ./ -RUN ./fetch-debs dumb-init libpam0g libaudit1 libcap-ng0 +RUN ./fetch-debs dumb-init libpam0g libaudit1 libcap-ng0 libfido2-1 FROM debian:12 AS teleport # Install the teleport binary from an architecture-specific debian package. Note @@ -34,6 +34,7 @@ COPY --from=teleport /opt/staging / COPY --from=staging /opt/staging/root / COPY --from=staging /opt/staging/status /var/lib/dpkg/status.d ENV TELEPORT_TOOLS_VERSION=off + # Attempt a graceful shutdown by default # See https://goteleport.com/docs/reference/signals/ for signal reference. STOPSIGNAL SIGQUIT