shuttle-builder 0.57.0

Docker build recipes for the Shuttle platform (shuttle.dev)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM debian:bookworm-slim AS runtime-base

SHELL ["/bin/bash", "-e", "-o", "pipefail", "-c"]

# ca-certificates for native-tls, curl for health check
RUN <<EOT
apt-get update

DEBIAN_FRONTEND=noninteractive apt-get install -y --no-install-recommends \
    ca-certificates \
    curl

apt-get clean
rm -rf /var/lib/apt/lists/*
EOT