Mohammed Naser | aa48ddb | 2023-12-30 00:11:22 -0500 | [diff] [blame] | 1 | VERSION 0.7 |
| 2 | |
| 3 | image: |
| 4 | FROM ../base+image |
Mohammed Naser | c639230 | 2024-01-04 00:43:02 -0500 | [diff] [blame] | 5 | DO ../+APT_INSTALL --PACKAGES "ca-certificates libpython3.10 lsb-release python3-distutils sudo ubuntu-cloud-keyring" |
Mohammed Naser | aa48ddb | 2023-12-30 00:11:22 -0500 | [diff] [blame] | 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 |