blob: 75e2c737c7c6d5716bd5f117d69874ebfe12e546 [file] [log] [blame]
Mohammed Naseraa48ddb2023-12-30 00:11:22 -05001VERSION 0.7
2
3image:
4 FROM ../base+image
5 DO ../+APT_INSTALL --PACKAGES "ca-certificates lsb-release python3-distutils sudo ubuntu-cloud-keyring"
6 ARG RELEASE
7 IF [ "$(lsb_release -sc)" = "jammy" ]
8 IF [ "${RELEASE}" = "yoga" ]
9 # NOTE: Yoga shipped with 22.04, so no need to add an extra repository.
10 RUN echo "" > /etc/apt/sources.list.d/cloudarchive.list
11 ELSE IF [ "${RELEASE}" = "zed" ]
12 RUN echo "deb http://ubuntu-cloud.archive.canonical.com/ubuntu $(lsb_release -sc)-updates/${RELEASE} main" > /etc/apt/sources.list.d/cloudarchive.list
13 ELSE IF [ "${RELEASE}" = "2023.1" ]
14 RUN echo "deb http://ubuntu-cloud.archive.canonical.com/ubuntu $(lsb_release -sc)-updates/antelope main" > /etc/apt/sources.list.d/cloudarchive.list
15 ELSE IF [ "${RELEASE}" = "2023.2" ]
16 RUN echo "deb http://ubuntu-cloud.archive.canonical.com/ubuntu $(lsb_release -sc)-updates/bobcat main" > /etc/apt/sources.list.d/cloudarchive.list
17 ELSE
18 RUN echo "${RELEASE} is not supported on $(lsb_release -sc)"
19 RUN exit 1
20 END
21 END