blob: 9db8314b5c6efce5dfa5b7040663c9e3f014f16e [file] [log] [blame]
Mohammed Naser86615772024-06-01 10:02:09 -04001# SPDX-License-Identifier: Apache-2.0
vexxhost-botc2fd4282024-06-26 07:04:25 +02002# Atmosphere-Rebuild-Time: 2024-06-25T13:53:44Z
Mohammed Naserc58c0c52024-04-15 11:33:15 -04003
Mohammed Nasere5b6ff72025-01-15 16:49:44 -05004ARG REGISTRY
Mohammed Naserd30f18d2024-04-17 01:20:43 -04005ARG RELEASE
6
Mohammed Nasere5b6ff72025-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