Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions build.assets/Dockerfile-arm
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ RUN apt-get -y update && \
gzip \
libc6-dev \
libpam-dev \
libfido2-1 \
locales \
pkg-config \
sudo \
Expand Down
3 changes: 2 additions & 1 deletion build.assets/charts/Dockerfile-distroless
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
Loading