Update containers from Ubuntu 16.04 to 18.04

IoT Edge no longer supports Ubuntu 16.04 and customers have
reported bugs related to the associated version of openssl (1.0).
These issues go away when using Ubuntu 18.04, which is associated
with openssl 1.1.
This commit is contained in:
Noel Campbell 2021-09-14 11:36:24 -04:00
Родитель f768c18247
Коммит 3b24f501f8
4 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -1,4 +1,4 @@
FROM ubuntu:xenial AS base
FROM ubuntu:bionic AS base
RUN apt-get update && \
apt-get install -y --no-install-recommends software-properties-common && \
add-apt-repository -y ppa:aziotsdklinux/ppa-azureiot && \

Просмотреть файл

@ -1,4 +1,4 @@
FROM ubuntu:xenial AS base
FROM ubuntu:bionic AS base
RUN apt-get update && \
apt-get install -y --no-install-recommends software-properties-common gdb && \
add-apt-repository -y ppa:aziotsdklinux/ppa-azureiot && \

Просмотреть файл

@ -1,4 +1,4 @@
FROM arm32v7/ubuntu:xenial AS base
FROM arm32v7/ubuntu:bionic AS base
RUN apt-get update && \
apt-get install -y --no-install-recommends software-properties-common && \
add-apt-repository -y ppa:aziotsdklinux/ppa-azureiot && \

Просмотреть файл

@ -1,4 +1,4 @@
FROM arm64v8/ubuntu:xenial AS base
FROM arm64v8/ubuntu:bionic AS base
RUN apt-get update && \
apt-get install -y --no-install-recommends software-properties-common && \
add-apt-repository -y ppa:aziotsdklinux/ppa-azureiot && \