You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

7 lines
305 B

  1. FROM ubuntu:18.04
  2. RUN echo "deb http://archive.canonical.com/ubuntu bionic partner" > /etc/apt/sources.list.d/partner.list \
  3. && apt-get update && apt-get install -yq \
  4. ca-certificates=20210119~18.04.1 \
  5. curl=7.58.0-2ubuntu3.15 \
  6. && apt-get clean \
  7. && rm -rf /var/lib/apt/lists/* \