blob: 4ccd5725016664fab19abfebdd47676881938df9 [file] [log] [blame]
Mohammed Naser86615772024-06-01 10:02:09 -04001# SPDX-License-Identifier: Apache-2.0
Mohammed Nasere786d962024-06-26 01:08:34 -04002# Atmosphere-Rebuild-Time: 2024-06-25T22:49:25Z
Mohammed Naserc58c0c52024-04-15 11:33:15 -04003
Mohammed Naserbcd53112025-01-15 16:49:44 -05004ARG REGISTRY
Mohammed Naserd30f18d2024-04-17 01:20:43 -04005ARG RELEASE
6
Mohammed Naserbcd53112025-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