blob: 858fccca6d17f130212949f3bd3d636176fc689f [file] [log] [blame]
Mohammed Naser86615772024-06-01 10:02:09 -04001# SPDX-License-Identifier: Apache-2.0
Mohammed Naser735efe22024-06-26 23:46:25 -04002# Atmosphere-Rebuild-Time: 2024-06-26T17:38:39Z
Mohammed Naserc58c0c52024-04-15 11:33:15 -04003
Mohammed Naserd4ae9be2025-01-15 16:49:44 -05004ARG REGISTRY
Mohammed Naserd30f18d2024-04-17 01:20:43 -04005ARG RELEASE
6
Mohammed Naserd4ae9be2025-01-15 16:49:44 -05007FROM ${REGISTRY}/ubuntu:${RELEASE}
Mohammed Naserc58c0c52024-04-15 11:33:15 -04008RUN <<EOF bash -xe
9apt-get update -qq
10apt-get install -qq -y --no-install-recommends \
11 curl keepalived
12apt-get clean
13rm -rf /var/lib/apt/lists/*
14EOF