Update Debian base image to version 11

An update on the Debian container specified as 'debian' produced that
some packages like libpython2.7 and postgresql-13 were not found,
causing the daily builds to fail.

This commit specifies the version to be used as a base image in order to
fix that problem.

Test Plan:
PASS: Build stx-snmp, stx-fm-trap-subagent and stx-fm-subagent. Verify
all the containers can be built properly.

Closes-Bug: 2023703

Signed-off-by: Enzo Candotti <enzo.candotti@windriver.com>
Change-Id: Ic4a2c69ea97ecfea3463c09d6de1b5c9dcdde6d3
This commit is contained in:
Enzo Candotti 2023-06-14 00:33:46 -03:00
parent aa5a8ddf0f
commit c7d206abbf
3 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ RUN apt-get -y install\
fm-common \
fm-common-dev
FROM debian AS base
FROM debian:11 AS base
RUN apt-get -y update
RUN apt-get -y install\
snmp snmpd snmptrapd \

View File

@ -1,4 +1,4 @@
FROM debian AS base
FROM debian:11 AS base
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -y update
RUN apt-get -y install\

View File

@ -1,4 +1,4 @@
FROM debian AS builder
FROM debian:11 AS builder
ENV DEBIAN_FRONTEND=noninteractive
RUN apt-get -y update
RUN apt-get -y install\