blob: 37202c81582d5e0455d3cbdd4146f5313e958586 [file] [log] [blame]
# SPDX-License-Identifier: Apache-2.0
# Atmosphere-Rebuild-Time: 2024-06-28T12:14:26Z
ARG REGISTRY
ARG RELEASE
FROM ${REGISTRY}/ubuntu:${RELEASE}
RUN <<EOF bash -xe
apt-get update -qq
apt-get install -qq -y --no-install-recommends \
curl keepalived
apt-get clean
rm -rf /var/lib/apt/lists/*
EOF